summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJohannes Raggam <raggam-nl@adm.at>2011-04-14 14:34:28 (GMT)
committerJohannes Raggam <raggam-nl@adm.at>2011-04-14 14:34:28 (GMT)
commit2bdc4804d10dc779a6cb296d59e18401e66a33af (patch)
tree67bed3de02ee3c4e3f06c2e7b6e31297cda5e2b6 /templates
parentf3cf1d88e8bbc17025cc4f477568f2995dd99af1 (diff)
weekschedule
Diffstat (limited to 'templates')
-rw-r--r--templates/program/week_schedule.html58
1 files changed, 37 insertions, 21 deletions
diff --git a/templates/program/week_schedule.html b/templates/program/week_schedule.html
index 76aed5a..402e027 100644
--- a/templates/program/week_schedule.html
+++ b/templates/program/week_schedule.html
@@ -7,52 +7,68 @@
<body>
<div id="content-main" class="week-schedule">
- <div id="monday">
- <div class="weekday">{{ monday|date:"l d.m.Y" }}</div>
+
+ <div id="weekday-starts">&nbsp;</div>
+ <div id="monday" class="weekday">
+ <h2>{{ monday|date:"l d.m.Y" }}</h2>
{% for timeslot in monday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
+ <div class="timeslot bf-{{ 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>
+ <div id="tuesday" class="weekday">
+ <h2>{{ tuesday|date:"l d.m.Y" }}</h2>
{% for timeslot in tuesday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
+ <div class="timeslot bf-{{ 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>
+ <div id="wednesday" class="weekday">
+ <h2>{{ wednesday|date:"l d.m.Y" }}</h2>
{% for timeslot in wednesday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
+ <div class="timeslot bf-{{ 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>
+ <div id="thursday" class="weekday">
+ <h2>{{ thursday|date:"l d.m.Y" }}</h2>
{% for timeslot in thursday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
+ <div class="timeslot bf-{{ 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>
+ <div id="friday" class="weekday">
+ <h2>{{ friday|date:"l d.m.Y" }}</h2>
{% for timeslot in friday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
+ <div class="timeslot bf-{{ 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>
+ <div id="saturday" class="weekday">
+ <h2>{{ saturday|date:"l d.m.Y" }}</h2>
{% for timeslot in saturday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
+ <div class="timeslot bf-{{ 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>
+ <div id="sunday" class="weekday">
+ <h2>{{ sunday|date:"l d.m.Y" }}</h2>
{% for timeslot in sunday_timeslots %}
- <div class="timeslot {{ timeslot.show.broadcastformat.slug }}"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></div>
+ <div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}">
+ <a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a>
+ </div>
{% endfor %}
</div>
</div>