Files
qgreper/templates/thread.html
David Hoppenbrouwers bba6bee92c Allow editing comments
2022-10-08 14:11:28 +02:00

14 lines
339 B
HTML

{%- extends 'base.html' %}
{%- from 'comment.html' import render_comment, reply, thread_author with context %}
{%- block content %}
{{ thread_author(author_id, author, create_time, modify_time) }}
<p>{{ minimd(text) | safe }}</p>
{{- reply() }}
{%- for c in comments %}
{{- render_comment(c, thread_id) }}
{%- endfor %}
{%- endblock %}