diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-05-01 19:32:32 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-05-01 19:32:32 (GMT) |
commit | 3dde0e9f3d6df71d962a8a409b11afe12762309b (patch) | |
tree | 7a30f1932ecefe696af36f58e3347c2023b40b8b /templates/program/week_schedule.html | |
parent | f08a6076ed4a0fdfdc0281ff4a8cac5bbd157c8c (diff) |
fill empty timeslots in day and week schedule views with a default show.
Diffstat (limited to 'templates/program/week_schedule.html')
-rw-r--r-- | templates/program/week_schedule.html | 72 |
1 files changed, 71 insertions, 1 deletions
diff --git a/templates/program/week_schedule.html b/templates/program/week_schedule.html index df7b177..2d01ebd 100644 --- a/templates/program/week_schedule.html +++ b/templates/program/week_schedule.html @@ -11,63 +11,133 @@ <div id="monday" class="weekday"> <h2>{{ monday|date:"l d.m.Y" }}</h2> {% for timeslot in monday_timeslots %} + {% if forloop.first and timeslot.start != timeslot.get_previous_by_start.end %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} <div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}"> - <a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a> + <a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a> </div> + {% if timeslot.end != timeslot.get_next_by_start.start %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} {% endfor %} </div> <div id="tuesday" class="weekday"> <h2>{{ tuesday|date:"l d.m.Y" }}</h2> {% for timeslot in tuesday_timeslots %} + {% if forloop.first and timeslot.start != timeslot.get_previous_by_start.end %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} <div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}"> <a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a> </div> + {% if timeslot.end != timeslot.get_next_by_start.start %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} {% endfor %} </div> <div id="wednesday" class="weekday"> <h2>{{ wednesday|date:"l d.m.Y" }}</h2> {% for timeslot in wednesday_timeslots %} + {% if forloop.first and timeslot.start != timeslot.get_previous_by_start.end %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} <div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}"> <a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a> </div> + {% if timeslot.end != timeslot.get_next_by_start.start %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} {% endfor %} </div> <div id="thursday" class="weekday"> <h2>{{ thursday|date:"l d.m.Y" }}</h2> {% for timeslot in thursday_timeslots %} + {% if forloop.first and timeslot.start != timeslot.get_previous_by_start.end %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} <div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}"> <a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a> </div> + {% if timeslot.end != timeslot.get_next_by_start.start %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} {% endfor %} </div> <div id="friday" class="weekday"> <h2>{{ friday|date:"l d.m.Y" }}</h2> {% for timeslot in friday_timeslots %} + {% if forloop.first and timeslot.start != timeslot.get_previous_by_start.end %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} <div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}"> <a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a> </div> + {% if timeslot.end != timeslot.get_next_by_start.start %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} {% endfor %} </div> <div id="saturday" class="weekday"> <h2>{{ saturday|date:"l d.m.Y" }}</h2> {% for timeslot in saturday_timeslots %} + {% if forloop.first and timeslot.start != timeslot.get_previous_by_start.end %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} <div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}"> <a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a> </div> + {% if timeslot.end != timeslot.get_next_by_start.start %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} {% endfor %} </div> <div id="sunday" class="weekday"> <h2>{{ sunday|date:"l d.m.Y" }}</h2> {% for timeslot in sunday_timeslots %} + {% if forloop.first and timeslot.start != timeslot.get_previous_by_start.end %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} <div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}"> <a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a> </div> + {% if timeslot.end != timeslot.get_next_by_start.start %} + <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> + {{ default_show.name }} + </div> + {% endif %} {% endfor %} </div> </div> |