{% extends 'base.html' %} {% block content %} {% with news.comment_set.all as comments %}

Détails

{{news.title}}

{{news.text}}

Commentaires

{% for comment in comments %}

Posté par {{comment.author}} le {{comment.date}}

{{comment.text}}
{% endfor %}

Ajouter un commentaire

{% endwith %} {% endblock %}