Implements block table for viewing talks
This commit is contained in:
parent
cad8ae7ae9
commit
f52d22f92e
1 changed files with 42 additions and 0 deletions
42
themes/nest/templates/tables.html
Normal file
42
themes/nest/templates/tables.html
Normal 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 %}
|
Loading…
Reference in a new issue