{% 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 comment.user_id==session.user_id %} Modifier {% endif %} {{comment.date|format_date}}

{{comment.user_name}}

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

Ajouter un commentaire

Détails
{% endblock %}