diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-02-23 18:02:14 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-02-23 18:02:14 (GMT) |
commit | 4590065b6ca9d7698c22277a4da1505486c8b637 (patch) | |
tree | 2a76ad1a0c1cced08fdcf2139f1e12796522b090 /pv/templates/program/show_list.html | |
parent | c95ec9e6bea9e076bda3ae66c4b604f399f5ec86 (diff) |
moved things around.
Diffstat (limited to 'pv/templates/program/show_list.html')
-rw-r--r-- | pv/templates/program/show_list.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/pv/templates/program/show_list.html b/pv/templates/program/show_list.html new file mode 100644 index 0000000..167a470 --- /dev/null +++ b/pv/templates/program/show_list.html @@ -0,0 +1,55 @@ +<html> +<head> + <title>Sendungen — Radio Helsinki - Freies Radio Graz</title> +</head> +<body> + +{% load content_boxes %} +<div id="filter-format"> +{% broadcastformat %} +</div> +<div id="filter-topic"> + <dl id="filter-header" class="portlet"> + <dt class="portletHeader"><span>Filter<span></dt> + </dl> +{% musicfocus %} +{% showinformation %} +{% showtopic %} +</div> + +<div id="content-main" class="show-list"> + <h1>Sendungen A-Z</h1> + + <div id="shows"> + {% for show in show_list %} + <div class="show bf-{{ show.broadcastformat.slug }}"> + <div class="show-abbrevs"> + {% for item in show.showinformation.all %} + <span title="{{item.information}}" class="abbrev si-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> + {% endfor %} + {% for item in show.showtopic.all %} + <span title="{{item.topic}}" class="abbrev st-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> + {% endfor %} + {% for item in show.musicfocus.all %} + <span title="{{item.focus}}" class="abbrev mf-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> + {% endfor %} + </div> + <div class="show-detail"> + <h3 class="show-title"><a href="{% url show-detail show.slug %}">{{ show.name }}</a></h3> + <ul class="show-programslots"> + {% for slot in show.programslots.all %} + {% if slot.has_active_timeslot %} + <li class="show-programslot">{{ slot }}</li> + {% endif %} + {% endfor %} + </ul> + <p class="show-description">{{ show.short_description }}</p> + </div> + </div> + {% endfor %} + </div> + +</div> + +</body> +</html> |