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/show_list.html | |
parent | 735310947b58eae113b782739bfb64b5c80d583c (diff) |
filter titles, optimizations
Diffstat (limited to 'templates/program/show_list.html')
-rw-r--r-- | templates/program/show_list.html | 12 |
1 files changed, 6 insertions, 6 deletions
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 %} <div class="show bf-{{ show.broadcastformat.slug }}"> <div class="show-abbrevs"> - {% for showinformation in show.showinformation.all %} - <span class="abbrev si-{{ showinformation.abbrev }}"><span>{{ showinformation.abbrev }}</span></span> + {% for item in show.showinformation.all %} + <span title="{{item.information}}" class="abbrev si-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} - {% for showtopic in show.showtopic.all %} - <span class="abbrev st-{{ showtopic.abbrev }}"><span>{{ showtopic.abbrev }}</span></span> + {% for item in show.showtopic.all %} + <span title="{{item.topic}}" class="abbrev st-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> {% endfor %} - {% for musicfocus in show.musicfocus.all %} - <span class="abbrev mf-{{ musicfocus.abbrev }}"><span>{{ musicfocus.abbrev }}</span></span> + {% 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"> |