blob: fe756a8e33341578ac18feb06156f1a099cf89d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends "tablon/base.html" %}
{% block page-header %}Lista de Foros{% endblock %}
{% block tablon %}
{% if lista_foros %}
<table class="table table-striped">
<tr>
<th>Foro</th>
<th>Temas</th>
</tr>
{% for f in lista_foros %}
<tr>
<td>
<a href="/tablon/foro/{{ f.id}}">{{ f.nombre }}</a><br />
{{ f.descripcion }}
</td>
<td>{{ f.tema_set.count }}</td>
</tr>
{% endfor %}
</table>
{% else %}
<p>No hay foros disponibles.</p>
{% endif %}
{% endblock %}
|