From f3cf1d88e8bbc17025cc4f477568f2995dd99af1 Mon Sep 17 00:00:00 2001 From: Johannes Raggam Date: Thu, 14 Apr 2011 15:53:24 +0200 Subject: filter titles, optimizations diff --git a/templates/program/boxes/broadcastformat.html b/templates/program/boxes/broadcastformat.html index 3ae00e1..4075faa 100644 --- a/templates/program/boxes/broadcastformat.html +++ b/templates/program/boxes/broadcastformat.html @@ -3,7 +3,7 @@
Legende
{% for broadcastformat in broadcastformats %}
- {{ broadcastformat.format }} + {{ broadcastformat.format }}
{% endfor %} diff --git a/templates/program/boxes/musicfocus.html b/templates/program/boxes/musicfocus.html index d19655b..01fffae 100644 --- a/templates/program/boxes/musicfocus.html +++ b/templates/program/boxes/musicfocus.html @@ -5,7 +5,7 @@ diff --git a/templates/program/boxes/showinformation.html b/templates/program/boxes/showinformation.html index ede17e2..ac4dc2c 100644 --- a/templates/program/boxes/showinformation.html +++ b/templates/program/boxes/showinformation.html @@ -5,7 +5,7 @@ diff --git a/templates/program/boxes/showtopic.html b/templates/program/boxes/showtopic.html index b1b514e..3a1938d 100644 --- a/templates/program/boxes/showtopic.html +++ b/templates/program/boxes/showtopic.html @@ -5,7 +5,7 @@ diff --git a/templates/program/day_schedule.html b/templates/program/day_schedule.html index eb3c8df..d7f4b87 100644 --- a/templates/program/day_schedule.html +++ b/templates/program/day_schedule.html @@ -29,14 +29,14 @@
{{ timeslot.start|date:"H:i" }}
- {% for showinformation in timeslot.show.showinformation.all %} - {{ showinformation.abbrev }} + {% for item in timeslot.show.showinformation.all %} + {{ item.abbrev }} {% endfor %} - {% for showtopic in timeslot.show.showtopic.all %} - {{ showtopic.abbrev }} + {% for item in timeslot.show.showtopic.all %} + {{ item.abbrev }} {% endfor %} - {% for musicfocus in timeslot.show.musicfocus.all %} - {{ musicfocus.abbrev }} + {% for item in timeslot.show.musicfocus.all %} + {{ item.abbrev }} {% endfor %}
diff --git a/templates/program/show_list.html b/templates/program/show_list.html index 8870f2d..67da0de 100644 --- a/templates/program/show_list.html +++ b/templates/program/show_list.html @@ -25,14 +25,14 @@ {% for show in show_list %}
- {% for showinformation in show.showinformation.all %} - {{ showinformation.abbrev }} + {% for item in show.showinformation.all %} + {{ item.abbrev }} {% endfor %} - {% for showtopic in show.showtopic.all %} - {{ showtopic.abbrev }} + {% for item in show.showtopic.all %} + {{ item.abbrev }} {% endfor %} - {% for musicfocus in show.musicfocus.all %} - {{ musicfocus.abbrev }} + {% for item in show.musicfocus.all %} + {{ item.abbrev }} {% endfor %}
-- cgit v0.10.2