From 7a78c4f9d62ba1242b59009e9da44824528913e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=AD=C3=B0ir=20Valberg=20Gu=C3=B0mundsson?= Date: Thu, 14 Jul 2016 08:53:09 +0200 Subject: [PATCH] Fixing template. --- program/templates/program.html | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/program/templates/program.html b/program/templates/program.html index de155ea5..0f0890cd 100644 --- a/program/templates/program.html +++ b/program/templates/program.html @@ -1,10 +1,18 @@ - - - - - Title - - +{% extends 'base.html' %} - - \ No newline at end of file +{% block content %} + + {% for day, events in days.items %} +
+ {{ day }}
+ {% for event in events %} +
+ {{ event }} +
+ {% endfor %} +
+
+ {% endfor %} + + +{% endblock %}