diff options
Diffstat (limited to 'src/main/resources/templates/views/thread.html')
-rw-r--r-- | src/main/resources/templates/views/thread.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/resources/templates/views/thread.html b/src/main/resources/templates/views/thread.html index 2092cc1b..252b41b0 100644 --- a/src/main/resources/templates/views/thread.html +++ b/src/main/resources/templates/views/thread.html @@ -18,6 +18,9 @@ {{ msg.created | prettyTime }} </time> </a> + {% if msg.updatedAt != msg.created %} + · Edited + {% endif %} </div> <div class="msg-tags"> {{ tags(msg.user.name, msg.tags | tagsList) }} @@ -145,6 +148,9 @@ {{ msg.created | prettyTime }} </time> </a> + {% if msg.updatedAt != msg.created %} + · Edited + {% endif %} </div> </div> <div class="msg-txt">{{ msg | formatMessage }}</div> |