blob: 3d8e8626a69a8564b69fec7f2afda2dfe0ac52df (
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
|
<html>
<head>
<title>Host: {{ host.name }} — Radio Helsinki - Freies Radio Graz</title>
</head>
<body>
<div id="content-main" class="host-detail">
<div id="name">{{ host.name }}</div>
<div id="shows">
<div id="shows-title">Sendungen</div>
{% for show in host.shows.all %}
{% if show.has_active_programslots %}
<div class="show {{ show.broadcastformat.slug }}"><a href="{% url show-detail show.slug %}">{{ show }}</a></div>
{% else %}
<div class="show {{ show.broadcastformat.slug }}">{{ show }}</div>
{% endif %}
{% endfor %}
</div>
{% if host.email %}
<div id="email">E-Mail Adresse: <a href="{{ host.email }}">{{ host.email }}</a></div>
{% endif %}
{% if host.website %}
<div id="website">Website: <a href="{{ host.website }}">{{ host.website }}</a></div>
{% endif %}
</div>
</body>
</html>
|