summaryrefslogtreecommitdiff
path: root/pv/templates/program/recommendations.html
diff options
context:
space:
mode:
Diffstat (limited to 'pv/templates/program/recommendations.html')
-rw-r--r--pv/templates/program/recommendations.html45
1 files changed, 0 insertions, 45 deletions
diff --git a/pv/templates/program/recommendations.html b/pv/templates/program/recommendations.html
deleted file mode 100644
index ba9a719..0000000
--- a/pv/templates/program/recommendations.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<html>
-<head>
- <title>Tipps &mdash; Radio Helsinki - Freies Radio Graz</title>
-</head>
-<body>
-
-<div id="content-main" class="recommendations">
- <h1>Programmhinweise</h1>
- <div id="shows">
-{% for item in recommendation_list %}
- <div class="show recommendation bf-{{ item.show.broadcastformat.slug }}">
- <div class="show-abbrevs">
- {% for ab in item.show.showinformation.all %}
- <span title="{{ab.information}}" class="abbrev si-{{ ab.abbrev }}"><span>{{ ab.abbrev }}</span></span>
- {% endfor %}
- {% for ab in item.show.showtopic.all %}
- <span title="{{ab.topic}}" class="abbrev st-{{ ab.abbrev }}"><span>{{ ab.abbrev }}</span></span>
- {% endfor %}
- {% for ab in item.show.musicfocus.all %}
- <span title="{{ab.focus}}" class="abbrev mf-{{ ab.abbrev }}"><span>{{ ab.abbrev }}</span></span>
- {% endfor %}
- </div>
- <div class="show-detail">
- <h4>
- <a href="{% url show-detail item.show.slug %}">{{ item.show.name }}</a><br />
- vom {{ item.start|date:"d.m. H:i" }}-{{ item.end|date:"H:i" }}
- </h4>
- {% if item.note %}
- <h3 class="show-title">
- <a href="{% url timeslot-detail item.id %}">{{ item.note.title }}</a>
- </h3>
- <div class="note-content">{{ item.note.content|safe}}</div>
- {% else %}
- <h3 class="show-title">
- <a href="{% url timeslot-detail item.id %}">{{ item.show.broadcastformat.format }}</a>
- </h3>
- {% endif %}
- </div>
- </div>
-{% endfor %}
- </div>
-</div>
-
-</body>
-</html>