Files
qgreper/templates/subforum.html
David Hoppenbrouwers d72fd14c92 Basics to view threads
2022-10-07 13:23:19 +02:00

11 lines
220 B
HTML

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