Show create/modify/update time

This commit is contained in:
David Hoppenbrouwers
2022-10-07 23:30:05 +02:00
parent dc2fbde8ab
commit 1eb77bc340
7 changed files with 156 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
{% extends 'base.html' %}
{% from 'comment.html' import render_comment, reply %}
{% from 'comment.html' import render_comment, reply, author as f_author with context %}
{% block content %}
{% if manage %}
@@ -9,7 +9,7 @@
</form>
</div>
{% endif %}
<sup><i>{{ author }}</i></sup>
<i>{{ f_author(author, create_time, modify_time) }}</i>
<p>{{ text }}</p>
{{ reply() }}