{% for comment in comments %} {% if comment == edited_comment %}
{{ comment.author }} posté le {{ comment.created_on|date }} à {{ comment.created_on|time }}
{% csrf_token %}
{% else %}
{{ comment.author }} posté le {{ comment.created_on|date }} à {{ comment.created_on|time }}{% if comment.created_on|date:"YmdHi" != comment.modified_on|date:"YmdHi" %}, dernière modification le {{ comment.modified_on|date }} à {{ comment.modified_on|time }}{% endif %} {% if comment.author == request.user %} {% endif %}
{{ comment.text|linebreaks }}
{% endif %} {% empty %}

(Aucun commentaire sur ce jeu)

{% endfor %} {% if not edited_comment %} {% if request.user.is_authenticated %}
{% csrf_token %}
{% else %}

Connectez-vous pour ajouter un commentaire.

{% endif %} {% endif %}