14 lines
338 B
HTML
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 %}
|