summaryrefslogtreecommitdiff
path: root/templates/program/day_schedule.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/program/day_schedule.html')
-rw-r--r--templates/program/day_schedule.html25
1 files changed, 16 insertions, 9 deletions
diff --git a/templates/program/day_schedule.html b/templates/program/day_schedule.html
index cb32ae8..2d20bdf 100644
--- a/templates/program/day_schedule.html
+++ b/templates/program/day_schedule.html
@@ -1,13 +1,17 @@
+<html>
+<head>
+ <title>Day schedule</title>
+</head>
+<body>
-<div id="calendar">
-</div>
+<div id="calendar"></div>
<div id="recommendations">
{% for recommendation in recommendations %}
- <div>{{ recommendation.timeslot.start|date:"H:i" }}</div>
- <div>{{ recommendation.timeslot.programslot.show.name }}</div>
- <div><a href="{% url timeslot-detail recommendation.timeslot.id %}">{{ recommendation.title }}</a></div>
+ <div>{{ recommendation.timeslot.start|date:"H:i" }}</div>
+ <div>{{ recommendation.timeslot.programslot.show.name }}</div>
+ <div><a href="{% url timeslot-detail recommendation.timeslot.id %}">{{ recommendation.title }}</a></div>
{% endfor %}
</div>
@@ -41,8 +45,11 @@
<div>
{% for broadcastformat in broadcastformats %}
- <div>
- {{ broadcastformat }}
- </div>
+ <div>
+ {{ broadcastformat }}
+ </div>
{% endfor %}
-</div> \ No newline at end of file
+</div>
+
+</body>
+</html> \ No newline at end of file