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

17 lines
354 B
HTML

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