{% extends 'base.html' %} {% load i18n %} {% block content %}

{{ actu.title }}

{% if actu.image %} {{ actu.title }} {% endif %} {{ actu.story|safe }}

{% trans "Posted on" %} {{actu.date_pub|date:"d E Y"}} {% if actu.categories.exists %} {% trans "in categories" %} {% for category in actu.categories.all %}{{category.name}} {% if not forloop.last %}, {% endif %} {% endfor %}{% endif %}

{% endblock %}