{% extends "base.html" %} {% load i18n %} {% load dv_filters %} {% block content %} {% if user|can:"home_article_cud" %}
{% trans "Nouvel article" %}
{% endif %} {% for article in articles %}

{% if not article.published %}{% endif %} {{ article.title }}

{{ article.modified }} {% if user|can:"home_article_cud" %} {% endif %}
{{ article.body|safe }}
{% endfor %} {% if not articles %}
{% trans "Aucun article publié pour l’instant." %}
{% endif %} {% endblock %}