diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-04-13 18:53:29 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-04-13 18:53:29 (GMT) |
commit | 103a909a999ecb8e2bce2cf84e4ec39968223a53 (patch) | |
tree | e219a86a6b468b736a47f21061916b114be54427 /templates/program/day_schedule.html | |
parent | ba41badf0171cd618034e4c9eb21893eaf1ccd90 (diff) |
getting real.
Diffstat (limited to 'templates/program/day_schedule.html')
-rw-r--r-- | templates/program/day_schedule.html | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/templates/program/day_schedule.html b/templates/program/day_schedule.html new file mode 100644 index 0000000..a0e1ac4 --- /dev/null +++ b/templates/program/day_schedule.html @@ -0,0 +1,60 @@ +<html> +<head> + <title>Day schedule: {{ day|date:"l, d.m.Y" }}</title> + <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" /> +</head> + +<body> + +<div id="calendar"></div> + +{% load content_boxes %} +<div id="filter-format"> +{% broadcastformat %} +</div> +<div id="filter-topic"> + <dl id="filter-header" class="portlet"> + <dt class="portletHeader"><span>Filter<span></dt> + </dl> +{% musicfocus %} +{% showinformation %} +{% showtopic %} +</div> + +<div id="content-main" class="day-schedule"> + <h2>Tagesansicht</h2> + <h1 id="date">{{ day|date:"l, d.m.Y" }}</h1> + + <div id="timeslots"> + {% for timeslot in timeslots %} + <div class="timeslot bcformat-{{ timeslot.show.broadcastformat.slug }}"> + <div class="start">{{ timeslot.start|date:"H:i" }}</div> + <div class="show-abbrevs"> + {% for showinformation in timeslot.show.showinformation.all %} + <span class="si-{{ showinformation.abbrev }}">{{ showinformation.abbrev }}</span> + {% endfor %} + {% for showtopic in timeslot.show.showtopic.all %} + <span class="st-{{ showtopic.abbrev }}">{{ showtopic.abbrev }}</span> + {% endfor %} + {% for musicfocus in timeslot.show.musicfocus.all %} + <span class="mf-{{ musicfocus.abbrev }}">{{ musicfocus.abbrev }}</span> + {% endfor %} + </div> + <div class="show"> + <h3 class="name"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></h3> + {% if timeslot.note %} + <p class="note-title"><strong>Heute:</strong> {{ timeslot.note.title }}</p> + {% else %} + {% if timeslot.show.short_description != 'FIXME' %} + <p class="short-description">{{ timeslot.show.short_description }}</p> + {% endif %} + {% endif %} + </div> + </div> + {% endfor %} + </div> +</div> + + +</body> +</html> |