Files
qgreper/templates/thread.html
2022-10-08 09:58:00 +02:00

21 lines
474 B
HTML

{% extends 'base.html' %}
{% from 'comment.html' import render_comment, reply, author as f_author with context %}
{% block content %}
{% if manage %}
<div>
<form method="get" action="confirm_delete/">
<input type="submit" value="Delete">
</form>
</div>
{% endif %}
<i>{{ f_author(author, create_time, modify_time, None, None) }}</i>
<p>{{ minimd(text) | safe }}</p>
{{ reply() }}
{% for c in comments %}
{{ render_comment(c, thread_id) }}
{% endfor %}
{% endblock %}