15 lines
286 B
HTML
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 %}
|