summaryrefslogtreecommitdiff
path: root/templates/program/timeslot_detail.html
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2011-02-27 11:38:02 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2011-02-27 11:38:02 (GMT)
commit36d8f7e5604f62bb51dcdb4dee4cc013bd0abda2 (patch)
tree8eb8aab36c2ca8f362b0f1bf555b7d229c88a136 /templates/program/timeslot_detail.html
First commit
Diffstat (limited to 'templates/program/timeslot_detail.html')
-rw-r--r--templates/program/timeslot_detail.html53
1 files changed, 53 insertions, 0 deletions
diff --git a/templates/program/timeslot_detail.html b/templates/program/timeslot_detail.html
new file mode 100644
index 0000000..d589f0e
--- /dev/null
+++ b/templates/program/timeslot_detail.html
@@ -0,0 +1,53 @@
+<html>
+<head>
+ <title>Timeslot detail: {{ timeslot }}</title>
+</head>
+<body>
+
+<div id="calendar"></div>
+
+<div id="timeslot-detail">
+ <div id="name">{{ timeslot.show.name }}</div>
+
+ <div id="abbrevs">
+ {% for topic in timeslot.show.show_topic.all %}
+ <span class="topic-abbrev">{{ topic.abbrev }}</span>
+ {% endfor %}
+ {% for information in timeslot.show.show_information.all %}
+ <span class="information-abbrev">{{ information.abbrev }}</span>
+ {% endfor %}
+ {% for focus in timeslot.show.music_focus.all %}
+ <span class="focus-abbrev">{{ focus.abbrev }}</span>
+ {% endfor %}
+ <span class="broadcast-format-abbrev">{{ timeslot.show.broadcast_format.abbrev }}</span>
+ </div>
+
+ <div id="program-slots">
+ {% for slot in timeslot.show.program_slots.all %}
+ <div class="program-slot">{{ slot }}</div>
+ {% endfor %}
+ </div>
+
+ <div id="broadcast-format">{{ timeslot.show.broadcast_format.format }}</div>
+
+ <div id="hosts">
+ {% for host in timeslot.show.hosts.all %}
+ <div class="host">{{ host }}</div>
+ {% endfor %}
+ </div>
+
+ <div id="short-description">{{ timeslot.show.short_description }}</div>
+ <div id="description">{{ timeslot.show.description }}</div>
+
+ <div id="note">
+ {% if timeslot.note %}
+ <div class="note">
+ <div class="title">{{ timeslot.note.title }}</div>
+ <div class="content">{{ timeslot.note.content }}</div>
+ </div>
+ {% endif %}
+ </div>
+</div>
+
+</body>
+</html> \ No newline at end of file