blob: 7955451e12772ed2e7c5af254131ce1892186ba8 (
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
|
<html>
<head>
<title>Sendung: {{ timeslot }} — Radio Helsinki - Freies Radio Graz</title>
</head>
<body>
<div id="content-main" class="timeslot-detail">
<div class="show-detail-header bf-{{timeslot.show.broadcastformat.slug}}">
<h1 id="name">{{ timeslot.show.name }}</h1>
<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>
<p id="broadcastformat">{{ timeslot.show.broadcastformat.format }}</p>
</div>
{% if timeslot.note %}
<h2>{{ timeslot.note.title }}</h2>
<p class="timeslot-note">{{ timeslot.note.content|safe }}</p>
{% endif %}
{% if timeslot.show.short_description != 'FIXME' %}
<div id="short-description" class="documentDescription">{{ timeslot.show.short_description }}</div>
{% endif %}
<div id="description">{{ timeslot.show.description|safe }}</div>
<p>
{% for host in timeslot.show.hosts.all %}
<a href="{% url host-detail host.id %}">{{ host }}</a><br />
{% endfor %}
{% if timeslot.show.email %}
<strong>Email:</strong> <a href="mailto:{{ timeslot.show.email }}">{{ timeslot.show.email }}</a><br />
{% endif %}
{% if timeslot.show.website %}
<strong>Website:</strong> <a href="{{ timeslot.show.website }}">{{ timeslot.show.website }}</a><br />
{% endif %}
{% if timeslot.show.cba_series_id %}
<strong>CBA-Link:</strong> <a href="http://cba.fro.at/series/{{ timeslot.show.cba_series_id }}">CBA</a><br />
{% endif %}
</p>
</div>
</body>
</html>
|