From f52d22f92eb6fe609aae13eccc768303b8422366 Mon Sep 17 00:00:00 2001 From: sValo Date: Sun, 6 Mar 2016 00:23:23 +0100 Subject: [PATCH] Implements block table for viewing talks --- themes/nest/templates/tables.html | 42 +++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 themes/nest/templates/tables.html diff --git a/themes/nest/templates/tables.html b/themes/nest/templates/tables.html new file mode 100644 index 0000000..3449f62 --- /dev/null +++ b/themes/nest/templates/tables.html @@ -0,0 +1,42 @@ +{% extends "page.html" %} +{% block table %} + + + + + + + + + + + {% for talk_num, talk in TALKS %} + {# Write description of the talk #} + + + {% for col, cont in talk %} + + {% endfor %} + + {% endfor %} +
+ # + + Orario + + Relat + + Titolo + + Abstract + + Stanza + + {{ TALKS }} +
+ talk_num: + {{ talk_num }} + + {{ talk.col }} +
+{% endblock table %}