summaryrefslogtreecommitdiff
path: root/helsinki/program/templates/program/show_list.html
diff options
context:
space:
mode:
Diffstat (limited to 'helsinki/program/templates/program/show_list.html')
-rw-r--r--helsinki/program/templates/program/show_list.html58
1 files changed, 0 insertions, 58 deletions
diff --git a/helsinki/program/templates/program/show_list.html b/helsinki/program/templates/program/show_list.html
deleted file mode 100644
index 6fe6525..0000000
--- a/helsinki/program/templates/program/show_list.html
+++ /dev/null
@@ -1,58 +0,0 @@
-<html>
-<head>
- <title>Show list</title>
- <link href="/site_media/styles/base.css" media="screen" rel="stylesheet" type="text/css" />
-</head>
-<body>
-
-{% load content_boxes %}
-<div id="filter-format">
-{% broadcastformat %}
-</div>
-<div id="filter-topic">
- <dl id="filter-header" class="portlet">
- <dt class="portletHeader"><span>Filter<span></dt>
- </dl>
-{% musicfocus %}
-{% showinformation %}
-{% showtopic %}
-</div>
-
-<div id="content-main" class="show-list">
-{% for show in show_list %}
- <div class="show">
- <div class="abbrevs">&nbsp;
- {% 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="details">
- <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>
-
- {% if show.short_description != 'FIXME' %}
- <div class="short-description">{{ show.short_description }}</div>
- {% endif %}
- </div>
- </div>
-{% endfor %}
-</div>
-
-</body>
-</html>