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