summaryrefslogtreecommitdiff
path: root/templates/tablon/foro.html
blob: 1efcdcb4165e3f91b5bbb1fe500626afb1f67d41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% extends "tablon/base.html" %}
{% block page-header %}{{ foro.nombre }}{% endblock %}
{% block tablon %}
<ul class="breadcrumb">
  <li><a href="/tablon/">Lista de foros</a> <span class="divider">/</span></li>
  <li><a href="/tablon/foro/{{ foro.id }}">{{ foro.nombre }}</a></li>
</ul>
{% if lista_temas %}
  <table class="table table-striped">
    <tr>
      <th>Tema</th>
      <th>Mensajes</th>
      <th>Último mensaje</th>
    </tr>
    {% for t in lista_temas %}
    <tr>
      <td><a href="/tablon/tema/{{ t.id}}">{{ t.titulo }}</a></td>
      <td>{{ t.mensaje_set.count }}</td>
      <td>
        <a href="/tablon/tema/{{ t.id }}/#{{t.ultimo_mensaje.id }}">ult</a>
        {{ t.ultimo_mensaje.created_on|date:"d/m/y @H:i" }}<br/>
        por <a href="/usuarios/ver/{{ t.ultimo_mensaje.autor.username }}">{{ t.ultimo_mensaje.autor.username }}</a>
      </td>
    </tr>
    {% endfor %}
  </table>
{% else %}
  <p>No hay temas en este foro.</p>
{% endif %}
<div class="btn-toolbar">
  <a class="btn btn-primary" href="/tablon/foro/{{ foro.id }}/nuevo_tema/">Nuevo tema</a>
</div>
{% endblock %}