8a094e15ee8ee9ff481a31a272357d6a56ed5cd7
[cascardo/ema.git] / eventos / templates / eventos / talk-list.html
1 {% extends "base.html" %}
2
3 {% block content %}
4 <h2>Trabalhos do palestrante {{ speaker }}</h2>
5
6 <table id="talks-list">
7   <thead>
8     <tr>
9       <th>Título</th>
10       <th>Tipo</th>
11       <th>Evento</th>
12     </tr>
13   </thead>
14   <tbody>
15     {% for t in talks %}
16     <tr>
17       <td><a href="/talks/{{ t.id }}/">{{ t.titulo }}</a></td>
18       <td>{{ t.tipo }}</td>
19       <td>{{ t.evento }}</td>
20       <td><a href="/talks/{{ t.id }}/delete/">Apagar</a></td>
21     </tr>
22     {% endfor %}
23   </tbody>
24 </table>
25
26 {% endblock %}