diff options
author | Johannes Raggam <raggam-nl@adm.at> | 2011-03-26 20:35:14 (GMT) |
---|---|---|
committer | Johannes Raggam <raggam-nl@adm.at> | 2011-03-26 20:35:14 (GMT) |
commit | d277b4a96830dac291fa77c710ffcba1c802407d (patch) | |
tree | 4209a83efd4ab96b028b7daa8e89630dfe383e90 /helsinki.program/templates/program/show_list.html | |
parent | faa08b0b5ff0da35708fdbfc0cf2475a051ee6e4 (diff) |
refactor project structure
Diffstat (limited to 'helsinki.program/templates/program/show_list.html')
-rw-r--r-- | helsinki.program/templates/program/show_list.html | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/helsinki.program/templates/program/show_list.html b/helsinki.program/templates/program/show_list.html deleted file mode 100644 index 7643087..0000000 --- a/helsinki.program/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 |