Files
qgreper/templates/thread.html
David Hoppenbrouwers 09cb2df004 Add theme
2022-10-07 19:13:16 +02:00

21 lines
378 B
HTML

{% extends 'base.html' %}
{% from 'comment.html' import render_comment, reply %}
{% block content %}
{% if manage %}
<div>
<form method="get" action="confirm_delete/">
<input type="submit" value="Delete">
</form>
</div>
{% endif %}
<sup><i>{{ author }}</i></sup>
<p>{{ text }}</p>
{{ reply() }}
{% for c in comments %}
{{ render_comment(c) }}
{% endfor %}
{% endblock %}