Files
qgreper/templates/thread.html
David Hoppenbrouwers 6299a9e1fb Remove redundant whitespace from rendered comments
Doesn't fix the perf issues but at least it reduces size quite a bit
2022-10-08 11:45:37 +02:00

14 lines
346 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 %}