summaryrefslogtreecommitdiff
path: root/templates/program/week_schedule.html
blob: 238b1918b9168c2bb36e8601a59be149a3edb22f (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
<html>
<head>
    <title>Wochenansicht &mdash; Radio Helsinki - Freies Radio Graz</title>
</head>

<body>

<div id="content-main" class="week-schedule">
    <div id="weekday-starts">
        <div style="height: 47px;">&nbsp;</div>
        <div style="height: 61px;">06:00</div>
        <div style="height: 61px;">07:00</div>
        <div style="height: 61px;">08:00</div>
        <div style="height: 61px;">09:00</div>
        <div style="height: 61px;">10:00</div>
        <div style="height: 61px;">11:00</div>
        <div style="height: 61px;">12:00</div>
        <div style="height: 61px;">13:00</div>
        <div style="height: 61px;">14:00</div>
        <div style="height: 61px;">15:00</div>
        <div style="height: 61px;">16:00</div>
        <div style="height: 61px;">17:00</div>
        <div style="height: 61px;">18:00</div>
        <div style="height: 61px;">19:00</div>
        <div style="height: 61px;">20:00</div>
        <div style="height: 61px;">21:00</div>
        <div style="height: 61px;">22:00</div>
        <div style="height: 61px;">23:00</div>
        <div style="height: 61px;">00:00</div>
        <div style="height: 61px;">01:00</div>
        <div style="height: 61px;">02:00</div>
        <div style="height: 61px;">03:00</div>
        <div style="height: 61px;">04:00</div>
        <div style="height: 61px;">05:00</div>
    </div>
    <div id="monday" class="weekday">
        <h2>{{ monday|date:"l d.m.Y" }}</h2>
        {% for timeslot in monday_timeslots %}
            {% include "program/week_schedule_timeslot.html" %}
        {% endfor %}
    </div>

    <div id="tuesday" class="weekday">
        <h2>{{ tuesday|date:"l d.m.Y" }}</h2>
        {% for timeslot in tuesday_timeslots %}
            {% include "program/week_schedule_timeslot.html" %}
        {% endfor %}
    </div>

    <div id="wednesday" class="weekday">
        <h2>{{ wednesday|date:"l d.m.Y" }}</h2>
        {% for timeslot in wednesday_timeslots %}
            {% include "program/week_schedule_timeslot.html" %}
        {% endfor %}
    </div>

    <div id="thursday" class="weekday">
        <h2>{{ thursday|date:"l d.m.Y" }}</h2>
        {% for timeslot in thursday_timeslots %}
            {% include "program/week_schedule_timeslot.html" %}
        {% endfor %}
    </div>

    <div id="friday" class="weekday">
        <h2>{{ friday|date:"l d.m.Y" }}</h2>
        {% for timeslot in friday_timeslots %}
            {% include "program/week_schedule_timeslot.html" %}
        {% endfor %}
    </div>

    <div id="saturday" class="weekday">
        <h2>{{ saturday|date:"l d.m.Y" }}</h2>
        {% for timeslot in saturday_timeslots %}
            {% include "program/week_schedule_timeslot.html" %}
        {% endfor %}
    </div>

    <div id="sunday" class="weekday">
        <h2>{{ sunday|date:"l d.m.Y" }}</h2>
        {% for timeslot in sunday_timeslots %}
            {% include "program/week_schedule_timeslot.html" %}
        {% endfor %}
    </div>
</div>

</body>
</html>