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

15 lines
286 B
HTML

{% extends 'base.html' %}
{% block content %}
<table>
<tr>
<th>Forum</th>
</tr>
{% for id, name, description in subforums %}
<tr>
<td><a href="{{ url_for('subforum', forum_id = id) }}"><b>{{ name }}</b> - {{ description }}</a></td>
</tr>
{% endfor %}
</table>
{% endblock %}