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.html73
1 files changed, 73 insertions, 0 deletions
diff --git a/helsinki.program/templates/program/show_list.html b/helsinki.program/templates/program/show_list.html
new file mode 100644
index 0000000..7643087
--- /dev/null
+++ b/helsinki.program/templates/program/show_list.html
@@ -0,0 +1,73 @@
+<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