diff options
author | Johannes Raggam <raggam-nl@adm.at> | 2011-03-26 19:31:34 (GMT) |
---|---|---|
committer | Johannes Raggam <raggam-nl@adm.at> | 2011-03-26 19:31:34 (GMT) |
commit | 5504c0d926aabb2017e547bfbfbcf986ce5ee037 (patch) | |
tree | 761915c882a6a65cbb707dcfc6dfd5e0cf45e49c /templates/program/timeslot_detail.html | |
parent | d1bb616aae8a11afef2627cf8a8d166156a05cf7 (diff) |
creating an egg pt1
Diffstat (limited to 'templates/program/timeslot_detail.html')
-rw-r--r-- | templates/program/timeslot_detail.html | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/templates/program/timeslot_detail.html b/templates/program/timeslot_detail.html deleted file mode 100644 index f445f5d..0000000 --- a/templates/program/timeslot_detail.html +++ /dev/null @@ -1,57 +0,0 @@ -<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.showtopic.all %} - <span class="topic-abbrev">{{ topic.abbrev }}</span> - {% endfor %} - - {% for information in timeslot.show.showinformation.all %} - <span class="information-abbrev">{{ information.abbrev }}</span> - {% endfor %} - - {% for focus in timeslot.show.musicfocus.all %} - <span class="focus-abbrev">{{ focus.abbrev }}</span> - {% endfor %} - - <span class="broadcastformat-abbrev">{{ timeslot.show.broadcastformat.abbrev }}</span> - </div> - - <div id="programslots"> - {% for slot in timeslot.show.programslots.all %} - <div class="programslot">{{ slot }}</div> - {% endfor %} - </div> - - <div id="broadcastformat">{{ timeslot.show.broadcastformat.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 |