summaryrefslogtreecommitdiff
path: root/program/templates/day_schedule.html
blob: 61005dd6ccc505b6d40979c0c9045c7836d0dbe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<html>
<head>
    <title>Tagesansicht {{ day|date:"l, d.m.Y" }} &mdash; Radio Helsinki - Freies Radio Graz</title>
    <script type="text/javascript" src="/program/static/js/jquery/jquery.min.js"></script>
    <script type="text/javascript" src="/program/static/js/jquery-ui/jquery-ui.min.js"></script>
    <script type="text/javascript" src="/program/static/js/jquery-ui/ui/jquery.ui.datepicker.min.js"></script>
    <script type="text/javascript">
        jQuery(document).ready(function () {
            jQuery("#calendar").datepicker({
                dateFormat: "yy.mm.dd",
                monthNames: ["Jänner", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"],
                monthNamesShort: ["Jän", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"],
                dayNames: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"],
                dayNamesMin: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"],
                dayNamesShort: ["Son", "Mon", "Die", "Mit", "Don", "Fre", "Sam"],
                firstDay: 1,
                nextText: "Weiter",
                prevText: "Zurück",
                defaultDate: location.href.split('/').slice(4, 7).join('.'),
                onSelect: function (dateText, inst) {
                    location = '/programm/' + dateText.split('.').join('/');
                }
            });
        });
    </script>
</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 si in default_show.showinformation.all %}
                            <span title="{{ si.information }}"
                                  class="abbrev si-{{ si.abbrev }}"><span>{{ si.abbrev }}</span></span>
                        {% endfor %}
                        {% for st in default_show.showtopic.all %}
                            <span title="{{ st.topic }}" class="abbrev st-{{ st.abbrev }}"><span>{{ st.abbrev }}</span></span>
                        {% endfor %}
                        {% for mf in default_show.musicfocus.all %}
                            <span title="{{ mf.focus }}" class="abbrev mf-{{ mf.abbrev }}"><span>{{ mf.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 si in timeslot.show.showinformation.all %}
                        <span title="{{ si.information }}"
                              class="abbrev si-{{ si.abbrev }}"><span>{{ si.abbrev }}</span></span>
                    {% endfor %}
                    {% for st in timeslot.show.showtopic.all %}
                        <span title="{{ st.topic }}"
                              class="abbrev st-{{ st.abbrev }}"><span>{{ st.abbrev }}</span></span>
                    {% endfor %}
                    {% for mf in timeslot.show.musicfocus.all %}
                        <span title="{{ mf.focus }}"
                              class="abbrev mf-{{ mf.abbrev }}"><span>{{ mf.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 %}
                        <p class="show-description">{{ timeslot.show.short_description }}</p>
                    {% 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 si in default_show.showinformation.all %}
                            <span title="{{ si.information }}"
                                  class="abbrev si-{{ si.abbrev }}"><span>{{ si.abbrev }}</span></span>
                        {% endfor %}
                        {% for st in default_show.showtopic.all %}
                            <span title="{{ st.topic }}" class="abbrev st-{{ st.abbrev }}"><span>{{ st.abbrev }}</span></span>
                        {% endfor %}
                        {% for mf in default_show.musicfocus.all %}
                            <span title="{{ mf.focus }}" class="abbrev mf-{{ mf.abbrev }}"><span>{{ mf.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>