Files
qgreper/templates/subforum.html
2022-10-07 15:20:17 +02:00

12 lines
297 B
HTML

{% extends 'base.html' %}
{% block content %}
<p>{{ description }}</p>
<a href="{{ url_for('new_thread', forum_id = forum_id) }}">Create thread</a>
<ul>
{% for id, title in threads %}
<li><a href="{{ url_for('thread', thread_id = id) }}">{{ title }}</a></li>
{% endfor %}
</ul>
{% endblock %}