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/show_list.html | |
parent | d1bb616aae8a11afef2627cf8a8d166156a05cf7 (diff) |
creating an egg pt1
Diffstat (limited to 'templates/program/show_list.html')
-rw-r--r-- | templates/program/show_list.html | 73 |
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 |