diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2016-03-27 18:56:59 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2016-03-27 18:56:59 (GMT) |
commit | 43fa018afbade0085ffae9734eedd8de75a5fdf9 (patch) | |
tree | 7f2f6a07904ffebbec51a53edb759ac17172eba7 /program/templates/show_detail.html | |
parent | 6c29ea12d96094cf1b71e6c2f22043bf92d32bcb (diff) |
fixed templates
Diffstat (limited to 'program/templates/show_detail.html')
-rw-r--r-- | program/templates/show_detail.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/program/templates/show_detail.html b/program/templates/show_detail.html index 3ab80ed..7993287 100644 --- a/program/templates/show_detail.html +++ b/program/templates/show_detail.html @@ -24,14 +24,14 @@ <div class="show-categorization"> <p id="broadcastformat">{{ show.broadcastformat.format }}</p> - {% for item in show.showinformation.all %} - <span title="{{ item.information }}" class="abbrev si-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> + {% for si in show.showinformation.all %} + <span title="{{ si.information }}" class="abbrev si-{{ si.abbrev }}"><span>{{ si.abbrev }}</span></span> {% endfor %} - {% for item in show.showtopic.all %} - <span title="{{ item.topic }}" class="abbrev st-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> + {% for st in show.showtopic.all %} + <span title="{{ st.topic }}" class="abbrev st-{{ st.abbrev }}"><span>{{ st.abbrev }}</span></span> {% endfor %} - {% for item in show.musicfocus.all %} - <span title="{{ item.focus }}" class="abbrev mf-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span> + {% for mf in show.musicfocus.all %} + <span title="{{ mf.focus }}" class="abbrev mf-{{ mf.abbrev }}"><span>{{ mf.abbrev }}</span></span> {% endfor %} </div> |