<html> <head> <title>Tagesansicht {{ day|date:"l, d.m.Y" }} — Radio Helsinki - Freies Radio Graz</title> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/jquery-ui.min.js"></script> <script type="text/javascript" src="http://jquery-ui.googlecode.com/svn/trunk/ui/i18n/jquery.ui.datepicker-de.js"></script> <script type="text/javascript" src="/site_media/programcalendar.js"></script> <link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/themes/base/jquery-ui.css" rel="stylesheet" /> </head> <body> <dl id="box_calendar" class="portlet calendar"> <dt class="portletHeader"><span>Kalender<span></dt> <dd class="portletItem"> <div id="calendar"></div> </dd> </dl> {% load content_boxes %} <div id="filter-format"> {% broadcastformat %} </div> {% comment %} <div id="filter-topic"> <dl id="filter-header" class="portlet"> <dt class="portletHeader"><span>Filter</span></dt> </dl> {% musicfocus %} {% showinformation %} {% showtopic %} </div> {% endcomment %} <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 %} {% if forloop.first and timeslot.start != timeslot.get_previous_by_start.end %} <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> <div class="show-start">{{ timeslot.get_previous_by_start.end|date:"H:i" }}</div> <div class="show-abbrevs"> {% for item in default_show.showinformation.all %} <span title="{{item.information}}" class="abbrev si-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} {% for item in default_show.showtopic.all %} <span title="{{item.topic}}" class="abbrev st-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} {% for item in default_show.musicfocus.all %} <span title="{{item.focus}}" class="abbrev mf-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} </div> <div class="show-detail"> <h3 class="show-title">{{ default_show.name }}</h3> <p class="show-description">{{ default_show.short_description }}</p> </div> </div> {% endif %} <div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}"> <div class="show-start">{{ timeslot.start|date:"H:i" }}</div> <div class="show-abbrevs"> {% for item in timeslot.show.showinformation.all %} <span title="{{item.information}}" class="abbrev si-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} {% for item in timeslot.show.showtopic.all %} <span title="{{item.topic}}" class="abbrev st-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} {% for item in timeslot.show.musicfocus.all %} <span title="{{item.focus}}" class="abbrev mf-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} </div> <div class="show-detail"> <h3 class="show-title"><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="show-description">{{ timeslot.show.short_description }}</p> {% endif %} {% endif %} </div> </div> {% if timeslot.end != timeslot.get_next_by_start.start %} <div class="timeslot bf-{{ default_show.broadcastformat.slug }}"> <div class="show-start">{{ timeslot.end|date:"H:i" }}</div> <div class="show-abbrevs"> {% for item in default_show.showinformation.all %} <span title="{{item.information}}" class="abbrev si-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} {% for item in default_show.showtopic.all %} <span title="{{item.topic}}" class="abbrev st-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} {% for item in default_show.musicfocus.all %} <span title="{{item.focus}}" class="abbrev mf-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} </div> <div class="show-detail"> <h3 class="show-title">{{ default_show.name }}</h3> <p class="show-description">{{ default_show.short_description }}</p> </div> </div> {% endif %} {% endfor %} </div> </div> </body> </html>