summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2011-03-22 15:01:55 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2011-03-22 15:01:55 (GMT)
commitb77f008e87e830bad7ce1b1632a411a1eca3d0a1 (patch)
tree574a892345475485fc7b4120e76be3f5106e3419 /templates
parent3a7642466db31a86462c62767c397636382911d7 (diff)
changed to TemplateView for day schedule, use one template for both views.
Diffstat (limited to 'templates')
-rw-r--r--templates/program/today_schedule.html48
1 files changed, 0 insertions, 48 deletions
diff --git a/templates/program/today_schedule.html b/templates/program/today_schedule.html
deleted file mode 100644
index cb32ae8..0000000
--- a/templates/program/today_schedule.html
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-<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>
- {% endfor %}
-</div>
-
-<div>
- {% for timeslot in timeslots %}
- <div>
- <span class="time">{{ timeslot.start|date:"H:i" }}</span>
- <span class="abbrev">
- {% for showinformation in timeslot.programslot.show.showinformation.all %}
- {{ showinformation.abbrev }}
- {% endfor %}
- </span>
- <span class="abbrev">
- {% for showtopic in timeslot.programslot.show.showtopic.all %}
- {{ showtopic.abbrev }}
- {% endfor %}
- </span>
- <span class="abbrev">
- {% for musicfocus in timeslot.programslot.show.musicfocus.all %}
- {{ musicfocus.abbrev }}
- {% endfor %}
- </span>
- <span class="timeslot">
- <a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show }}</a>
- {% if timeslot.note %}
- <span>Heute: {{ timeslot.note.title }}</span>
- {% endif %}
- </span>
- {% endfor %}
-</div>
-
-<div>
- {% for broadcastformat in broadcastformats %}
- <div>
- {{ broadcastformat }}
- </div>
- {% endfor %}
-</div> \ No newline at end of file