From 90ac25917750fc4119f89de6bc1b1d905ab84e11 Mon Sep 17 00:00:00 2001 From: Eragon Date: Thu, 5 Dec 2019 17:14:40 +0100 Subject: [PATCH] Ajout de la date de publication et de modification d'un post --- app/templates/forum/topic.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app/templates/forum/topic.html b/app/templates/forum/topic.html index 78a9f27..456b34d 100644 --- a/app/templates/forum/topic.html +++ b/app/templates/forum/topic.html @@ -13,14 +13,20 @@ {{ widget_member.profile(t.author ) }} {{ t.thread.top_comment.text }} -
{% for i, c in enumerate(t.thread.comments) %} {% if c != t.thread.top_comment %} -
{{ widget_member.profile(c.author ) }}{{ c.text }} + + {% if c.date_created != c.date_modified %} + Le {{ c.date_created|date }} (Modifié le {{ c.date_modified|date }}) + {% elif c.date_created == c.date_modified %} + Le {{ c.date_created|date }} + {% endif %} +
+

{{ c.text }}

{% elif i != 0 %}
Ce message est le top comment
{% endif %}