{% extends 'layout.html' %} {% block content %}

{{news.title}}

{{news.content_cache|safe}}


Commentaires

{% if not comments %} Pas de commentaires pour l'instant. {% endif %} {% for comment in comments %}
{{comment.user_name}}

{% if news.user_name==session.user_name %} Modifier {% endif %} {{comment.date|format_date}}

{{comment.user_name}}

{{comment.content_cache|safe}}
{% if news.user_name==session.user_name %}
{% endif %}
{% endfor %}

Ajouter un commentaire

Détails
{% endblock %}