From 26e194c20bf7c3035ef9b7034c678cc53f744135 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Tue, 21 Nov 2023 19:47:37 +0000 Subject: [PATCH] Add missing conference list template --- templates/conference_list.html | 39 ++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 templates/conference_list.html 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 %}