Skip to content
Snippets Groups Projects
Commit 2bdc4804 authored by Johannes Raggam's avatar Johannes Raggam
Browse files

weekschedule

parent f3cf1d88
Branches
Tags
No related merge requests found
...@@ -7,52 +7,68 @@ ...@@ -7,52 +7,68 @@
<body> <body>
<div id="content-main" class="week-schedule"> <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 %} {% 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 %} {% endfor %}
</div> </div>
<div id="tuesday"> <div id="tuesday" class="weekday">
<div class="weekday">{{ tuesday|date:"l d.m.Y" }}</div> <h2>{{ tuesday|date:"l d.m.Y" }}</h2>
{% for timeslot in tuesday_timeslots %} {% 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 %} {% endfor %}
</div> </div>
<div id="wednesday"> <div id="wednesday" class="weekday">
<div class="weekday">{{ wednesday|date:"l d.m.Y" }}</div> <h2>{{ wednesday|date:"l d.m.Y" }}</h2>
{% for timeslot in wednesday_timeslots %} {% 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 %} {% endfor %}
</div> </div>
<div id="thursday"> <div id="thursday" class="weekday">
<div class="weekday">{{ thursday|date:"l d.m.Y" }}</div> <h2>{{ thursday|date:"l d.m.Y" }}</h2>
{% for timeslot in thursday_timeslots %} {% 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 %} {% endfor %}
</div> </div>
<div id="friday"> <div id="friday" class="weekday">
<div class="weekday">{{ friday|date:"l d.m.Y" }}</div> <h2>{{ friday|date:"l d.m.Y" }}</h2>
{% for timeslot in friday_timeslots %} {% 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 %} {% endfor %}
</div> </div>
<div id="saturday"> <div id="saturday" class="weekday">
<div class="weekday">{{ saturday|date:"l d.m.Y" }}</div> <h2>{{ saturday|date:"l d.m.Y" }}</h2>
{% for timeslot in saturday_timeslots %} {% 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 %} {% endfor %}
</div> </div>
<div id="sunday"> <div id="sunday" class="weekday">
<div class="weekday">{{ sunday|date:"l d.m.Y" }}</div> <h2>{{ sunday|date:"l d.m.Y" }}</h2>
{% for timeslot in sunday_timeslots %} {% 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 %} {% endfor %}
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment