{% import "widgets/user.html" as widget_user %} {% import "widgets/attachments.html" as widget_attachments %} {% macro thread(comments, top_comment, anchor) %} {% for c in comments.items %} {% if c != top_comment %} {% endfor %}
{{ widget_user.profile(c.author) }}
{% if c.date_created != c.date_modified %} Posté le {{ c.date_created|date }} (Modifié le {{ c.date_modified|date }}) {% else %} Posté le {{ c.date_created|dyndate }} {% endif %} | # | Modifier | Supprimer
{{ c.text|md }} {{ widget_attachments.attachments(c) }} {% if c.author.signature != "" %}
{{ c.author.signature|md }} {% endif %} {% elif loop.index0 != 0 %}
Ce message est le top comment
{% endif %}
{% endmacro %}