Implements block table for viewing talks

This commit is contained in:
sValo 2016-03-06 00:23:23 +01:00
parent cad8ae7ae9
commit f52d22f92e

View file

@ -0,0 +1,42 @@
{% extends "page.html" %}
{% block table %}
<table class="table table-hover table-striped">
<tr>
<th>
#
</th>
<th>
Orario
</th>
<th>
Relat
</th>
<th>
Titolo
</th>
<th>
Abstract
</th>
<th>
Stanza
</th>
<th>
{{ TALKS }}
</th>
</tr>
{% for talk_num, talk in TALKS %}
{# Write description of the talk #}
<tr>
<td>
<b>talk_num:</b>
{{ talk_num }}
</td>
{% for col, cont in talk %}
<td>
{{ talk.col }}
</td>
{% endfor %}
</tr>
{% endfor %}
</table>
{% endblock table %}