diff --git a/templates/conference_list.html b/templates/conference_list.html new file mode 100644 index 0000000..447cf2d --- /dev/null +++ b/templates/conference_list.html @@ -0,0 +1,39 @@ +{% extends "base.html" %} + +{% block style %} + +{% endblock %} + +{% block content %} + +
+ +

Conferences

+ +

← back to agenda

+ +
+ {% for item in item_list %} +
{{ item.start.strftime("%a, %d %b %Y") }}
+
{{ item.end.strftime("%a, %d %b") }}
+
{{ item.name }}
+
{{ item.topic }}
+
{{ item.location }}
+ + {% endfor %} +
+ +
+ +{% endblock %}