summaryrefslogtreecommitdiff
path: root/helsinki/program/templates/program/week_schedule.html
diff options
context:
space:
mode:
Diffstat (limited to 'helsinki/program/templates/program/week_schedule.html')
-rw-r--r--helsinki/program/templates/program/week_schedule.html61
1 files changed, 0 insertions, 61 deletions
diff --git a/helsinki/program/templates/program/week_schedule.html b/helsinki/program/templates/program/week_schedule.html
deleted file mode 100644
index 76aed5a..0000000
--- a/helsinki/program/templates/program/week_schedule.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<html>
-<head>
- <title>Week schedule</title>
- <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" />
-</head>
-
-<body>
-
-<div id="content-main" class="week-schedule">
- <div id="monday">
- <div class="weekday">{{ monday|date:"l d.m.Y" }}</div>
- {% for timeslot in monday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
- {% endfor %}
- </div>
-
- <div id="tuesday">
- <div class="weekday">{{ tuesday|date:"l d.m.Y" }}</div>
- {% for timeslot in tuesday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
- {% endfor %}
- </div>
-
- <div id="wednesday">
- <div class="weekday">{{ wednesday|date:"l d.m.Y" }}</div>
- {% for timeslot in wednesday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
- {% endfor %}
- </div>
-
- <div id="thursday">
- <div class="weekday">{{ thursday|date:"l d.m.Y" }}</div>
- {% for timeslot in thursday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
- {% endfor %}
- </div>
-
- <div id="friday">
- <div class="weekday">{{ friday|date:"l d.m.Y" }}</div>
- {% for timeslot in friday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
- {% endfor %}
- </div>
-
- <div id="saturday">
- <div class="weekday">{{ saturday|date:"l d.m.Y" }}</div>
- {% for timeslot in saturday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
- {% endfor %}
- </div>
-
- <div id="sunday">
- <div class="weekday">{{ sunday|date:"l d.m.Y" }}</div>
- {% for timeslot in sunday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
- {% endfor %}
- </div>
-</div>
-
-</body>
-</html>