sito-hackit-16/themes/nest/templates/tables.html

55 lines
957 B
HTML
Raw Normal View History

{% extends "page.html" %}
{% block table %}
<table class="table table-hover table-striped">
<tr>
<th>
#
</th>
<th>
Giorno
</th>
<th>
Orario
</th>
<th>
Titolo
</th>
<th>
Relatore/Relatrice/i
</th>
<th>
Abstract
</th>
<th>
Stanza
</th>
</tr>
{% for talk_num, talk in TALKS.iteritems() %}
{# Write description of the talk #}
<tr>
<td>
{{ talk_num }}
</td>
<td>
{{ talk.Day }}
</td>
<td>
{{ talk.Schedule }}
</td>
<td>
{{ talk.Title }}
</td>
<td>
{{ talk.Speaker }}
</td>
<td>
{{ talk.Abstract }}
</td>
<td>
{{ talk.Room }}
</td>
</tr>
{% endfor %}
</table>
{% endblock table %}