Files
qgreper/templates/thread.html
2022-10-08 11:00:20 +02:00

14 lines
338 B
HTML

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