Fix bad merge
[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       <th>&nbsp;</th>
13     </tr>
14   </thead>
15   <tbody>
16     {% for t in talks %}
17     <tr>
18       <td><a href="/talks/{{ t.id }}/">{{ t.titulo }}</a></td>
19       <td>{{ t.tipo }}</td>
20       <td>{{ t.evento }}</td>
21       <td><a href="/talks/{{ t.id }}/delete/">Apagar</a></td>
22     </tr>
23     {% endfor %}
24   </tbody>
25 </table>
26
27 {% endblock %}