summaryrefslogtreecommitdiff
path: root/templates/program/show_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/program/show_list.html')
-rw-r--r--templates/program/show_list.html73
1 files changed, 0 insertions, 73 deletions
diff --git a/templates/program/show_list.html b/templates/program/show_list.html
deleted file mode 100644
index 7643087..0000000
--- a/templates/program/show_list.html
+++ /dev/null
@@ -1,73 +0,0 @@
-<html>
-<head>
- <title>Show list</title>
-</head>
-<body>
-
-<div id="showtopic-list">
-{% for topic in showtopics %}
- <div class="showtopic">
- <span class="abbrev">{{ topic.abbrev }}</span>
- <span class="topic">{{ topic }}</span>
- </div>
-{% endfor %}
-</div>
-
-<div id="showinformation-list">
-{% for information in showinformations %}
- <div class="showinformation">
- <span class="abbrev">{{ information.abbrev }}</span>
- <span class="information">{{ information }}</span>
- </div>
-{% endfor %}
-</div>
-
-<div id="musicfocus-list">
-{% for focus in musicfoci %}
- <div class="musicfocus">
- <span class="abbrev">{{ focus.abbrev }}</span>
- <span class="focus">{{ focus }}</span>
- </div>
-{% endfor %}
-</div>
-
-<div id="show-list">
-{% for show in shows %}
- <div class="show">
- <div class="abbrevs">
- {% for topic in show.showtopic.all %}
- <span class="topic-abbrev">{{ topic.abbrev }}</span>
- {% endfor %}
-
- {% for information in show.showinformation.all %}
- <span class="information-abbrev">{{ information.abbrev }}</span>
- {% endfor %}
-
- {% for focus in show.musicfocus.all %}
- <span class="focus-abbrev">{{ focus.abbrev }}</span>
- {% endfor %}
-
- <span class="broadcastformat-abbrev">{{ show.broadcastformat.abbrev }}</span>
- </div>
-
- <div class="name"><a href="{% url show-detail show.slug %} ">{{ show.name }}</a></div>
-
- <div class="programslots">
- {% for slot in show.programslots.all %}
- <div class="programslot">{{ slot }}</div>
- {% endfor %}
- </div>
-
- <div class="short-description">{{ show.short_description }}</div>
- </div>
-{% endfor %}
-</div>
-
-<div id="broadcastformat-list">
-{% for format in broadcastformats %}
- <div class="broadcastformat">{{ format }}</div>
-{% endfor %}
-</div>
-
-</body>
-</html> \ No newline at end of file