summaryrefslogtreecommitdiff
path: root/pv/templates/program/timeslot_detail.html
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2014-02-28 19:00:45 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2014-02-28 19:00:45 (GMT)
commit0c00f412dc5d8ccba552f3633993a4696e0d6b55 (patch)
treed299cb6bcb60dfc99ad70f1d8cfb100f8aea71a6 /pv/templates/program/timeslot_detail.html
parentabc439740a24c503b8756aa30c57281a4cf6ad31 (diff)
parentd4c75b4893bfcb28e300ff5e10dc9cd0993f8537 (diff)
Merge branch 'master' of https://github.com/nnrcschmdt/helsinki
Diffstat (limited to 'pv/templates/program/timeslot_detail.html')
-rw-r--r--pv/templates/program/timeslot_detail.html62
1 files changed, 0 insertions, 62 deletions
diff --git a/pv/templates/program/timeslot_detail.html b/pv/templates/program/timeslot_detail.html
deleted file mode 100644
index 856aef3..0000000
--- a/pv/templates/program/timeslot_detail.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<html>
-<head>
- <title>Sendung: {{ timeslot }} &mdash; 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">
- <a href="{% url show-detail timeslot.show.slug %}">{{ timeslot.show.name }}</a>
- </h1>
- {% if timeslot.note %}
- <h2>{{ timeslot.note.title }}</h2>
- {% endif %}
- <strong>Sendung am {{ timeslot.start|date:"d.m. H:i" }} bis {{ timeslot.end|date:"H:i" }}</strong>
-
- <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 %}
- <p class="timeslot-note">{{ timeslot.note.content|safe }}</p>
- {% endif %}
-
- <div id="short-description" class="documentDescription">{{ timeslot.show.short_description }}</div>
-
- {% if timeslot.show.description %}
- <div id="description">{{ timeslot.show.description|safe }}</div>
- {% endif %}
-
- <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>