diff options
author | Johannes Raggam <raggam-nl@adm.at> | 2011-04-14 13:53:24 (GMT) |
---|---|---|
committer | Johannes Raggam <raggam-nl@adm.at> | 2011-04-14 13:53:24 (GMT) |
commit | f3cf1d88e8bbc17025cc4f477568f2995dd99af1 (patch) | |
tree | d3c18233713524ee7fcb8142dd194c94d7be1168 /templates/program/day_schedule.html | |
parent | 735310947b58eae113b782739bfb64b5c80d583c (diff) |
filter titles, optimizations
Diffstat (limited to 'templates/program/day_schedule.html')
-rw-r--r-- | templates/program/day_schedule.html | 12 |
1 files changed, 6 insertions, 6 deletions
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 @@ <div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}"> <div class="show-start">{{ timeslot.start|date:"H:i" }}</div> <div class="show-abbrevs"> - {% for showinformation in timeslot.show.showinformation.all %} - <span class="abbrev si-{{ showinformation.abbrev }}"><span>{{ showinformation.abbrev }}</span></span> + {% for item in timeslot.show.showinformation.all %} + <span title="{{item.information}}" class="abbrev si-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} - {% for showtopic in timeslot.show.showtopic.all %} - <span class="abbrev st-{{ showtopic.abbrev }}"><span>{{ showtopic.abbrev }}</span></span> + {% for item in timeslot.show.showtopic.all %} + <span title="{{item.topic}}" class="abbrev st-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} - {% for musicfocus in timeslot.show.musicfocus.all %} - <span class="abbrev mf-{{ musicfocus.abbrev }}"><span>{{ musicfocus.abbrev }}</span></span> + {% for item in timeslot.show.musicfocus.all %} + <span title="{{item.focus}}" class="abbrev mf-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} </div> <div class="show-detail"> |