blob: 7fbcf9f9992ef5d0ad35cb9e86f78d61aa0ba41b (
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
|
<html>
<head>
<title>Sendung: {{ show.name }} — Radio Helsinki - Freies Radio Graz</title>
</head>
<body>
<div id="content-main" class="show-detail">
<h1>{{ show.name }}</h1>
<div class="show">
<div id="short-description">{{ show.short_description }}</div>
<div class="show-detail-header bf-{{ show.broadcastformat.slug }}">
<div class="show-details">
{% if show.id != 1 %}
<p id="programslots">
{% for slot in show.active_programslots %}
<span class="programslot">{{ slot }}</span><br/>
{% endfor %}
</p>
{% endif %}
</div>
<div class="show-categories">
{% for si in show.showinformation.all %}
<span title="{{ si.information }}" class="category category-si si-{{ si.abbrev }}"><span>{{ si.abbrev }}</span></span>
{% endfor %}
{% for st in show.showtopic.all %}
<span title="{{ st.topic }}" class="category category-st st-{{ st.abbrev }}"><span>{{ st.abbrev }}</span></span>
{% endfor %}
{% for mf in show.musicfocus.all %}
<span title="{{ mf.focus }}" class="category category-mf mf-{{ mf.abbrev }}"><span>{{ mf.abbrev }}</span></span>
{% endfor %}
{% for lang in show.language.all %}
<span title="{{ lang.name }}/{{ lang.native_name }}" class="category category-lang lang-{{ lang.slug }}"><span>{{ lang.slug }}</span></span>
{% endfor %}
</div>
<div id="broadcastformat">{{ show.broadcastformat.format }}</div>
</div>
{% if show.image %}
<div id="image"><img src="https://images.helsinki.at/program/{{ show.image }}"></div>
{% endif %}
{% if show.description %}
<div id="description">{{ show.description|safe }}</div>
{% endif %}
<p>
{% if show.hosts.all %}
<strong>Redaktion:</strong>
{% for host in show.hosts.all %}
<a href="/program/hosts/{{ host.id }}">{{ host }}</a>{% if not forloop.last %}, {% endif %}
{% endfor %}
<br/>
{% endif %}
{% if show.email %}
<strong>E-Mail:</strong> <a href="mailto:{{ show.email }}">{{ show.email }}</a><br/>
{% endif %}
{% if show.website %}
<strong>Website:</strong> <a href="{{ show.website }}">{{ show.website }}</a><br/>
{% endif %}
</p>
{% if show.notes.all %}
<br/>
<h2>Sendungstipps</h2>
<ul class="recommendations-list">
{% for note in show.notes.all reversed %}
<li>
<a href="/program/{{ note.timeslot.id }}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}:</a>
<div class="title">{{ note.title }}</div>
</li>
{% endfor %}
{% if show.predecessor and show.predecessor.notes.all %}
{% if show.name != show.predecessor.name %}
<h3>Davor als <a href="/program/shows/{{ show.predecessor.slug }}">{{ show.predecessor.name }}</a></h3>
{% endif %}
{% for note in show.predecessor.notes.all reversed %}
<li>
<a href="/program/{{ note.timeslot.id }}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}:</a>
<div class="title">{{ note.title }}</div>
</li>
{% endfor %}
{% endif %}
</ul>
{% endif %}
</div>
</div>
</body>
</html>
|