diff options
Diffstat (limited to 'program/templates/v2/show_list.html')
-rw-r--r-- | program/templates/v2/show_list.html | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/program/templates/v2/show_list.html b/program/templates/v2/show_list.html index eacb608..466cf77 100644 --- a/program/templates/v2/show_list.html +++ b/program/templates/v2/show_list.html @@ -10,15 +10,18 @@ <div id="shows"> {% for show in show_list %} <div class="show bf-{{ show.broadcastformat.slug }}"> - <div class="show-abbrevs"> + <div class="show-categories"> {% for si in show.showinformation.all %} - <span title="{{ si.information }}" class="abbrev si-{{ si.abbrev }}"><span>{{ si.abbrev }}</span></span> + <span title="{{ si.information }}" class="category categor-si si-{{ si.abbrev }}"><span>{{ si.abbrev }}</span></span> {% endfor %} {% for st in show.showtopic.all %} - <span title="{{ st.topic }}" class="abbrev st-{{ st.abbrev }}"><span>{{ st.abbrev }}</span></span> + <span title="{{ st.topic }}" class="category categor-st st-{{ st.abbrev }}"><span>{{ st.abbrev }}</span></span> {% endfor %} {% for mf in show.musicfocus.all %} - <span title="{{ mf.focus }}" class="abbrev mf-{{ mf.abbrev }}"><span>{{ mf.abbrev }}</span></span> + <span title="{{ mf.focus }}" class="category categor-mf mf-{{ mf.abbrev }}"><span>{{ mf.abbrev }}</span></span> +{% endfor %} +{% for lang in show.language.all %} + <span title="{{ lang.name }}/{{ lang.native_name }}" class="catetory category-lang lang-{{ lang.slug }}"><span>{{ lang.slug }}</span></span> {% endfor %} </div> <div class="show-detail"> |