diff options
Diffstat (limited to 'templates/program')
-rw-r--r-- | templates/program/boxes/musicfocus.html | 2 | ||||
-rw-r--r-- | templates/program/boxes/showinformation.html | 2 | ||||
-rw-r--r-- | templates/program/boxes/showtopic.html | 2 | ||||
-rw-r--r-- | templates/program/day_schedule.html | 6 | ||||
-rw-r--r-- | templates/program/show_list.html | 6 |
5 files changed, 9 insertions, 9 deletions
diff --git a/templates/program/boxes/musicfocus.html b/templates/program/boxes/musicfocus.html index 9f57b60..d19655b 100644 --- a/templates/program/boxes/musicfocus.html +++ b/templates/program/boxes/musicfocus.html @@ -5,7 +5,7 @@ <ul> {% for item in musicfoci %} <li> - <a class="filteritem mf-{{ item.abbrev }}" href="?musicfocus={{ item.slug }}">{{ item }}</a> + <a class="abbrev mf-{{ item.abbrev }}" href="?musicfocus={{ item.slug }}">{{ item }}</a> </li> {% endfor %} </ul> diff --git a/templates/program/boxes/showinformation.html b/templates/program/boxes/showinformation.html index 9a08ddc..ede17e2 100644 --- a/templates/program/boxes/showinformation.html +++ b/templates/program/boxes/showinformation.html @@ -5,7 +5,7 @@ <ul> {% for item in showinformations %} <li> - <a class="filteritem si-{{ item.abbrev }}" href="?showinformation={{ item.slug }}">{{ item }}</a> + <a class="abbrev si-{{ item.abbrev }}" href="?showinformation={{ item.slug }}">{{ item }}</a> </li> {% endfor %} </ul> diff --git a/templates/program/boxes/showtopic.html b/templates/program/boxes/showtopic.html index 3dd7e88..b1b514e 100644 --- a/templates/program/boxes/showtopic.html +++ b/templates/program/boxes/showtopic.html @@ -5,7 +5,7 @@ <ul> {% for item in showtopics %} <li> - <a class="filteritem st-{{ item.abbrev }}" href="?showtopic={{ item.slug }}">{{ item }}</a> + <a class="abbrev st-{{ item.abbrev }}" href="?showtopic={{ item.slug }}">{{ item }}</a> </li> {% endfor %} </ul> diff --git a/templates/program/day_schedule.html b/templates/program/day_schedule.html index 88f743e..eb3c8df 100644 --- a/templates/program/day_schedule.html +++ b/templates/program/day_schedule.html @@ -30,13 +30,13 @@ <div class="show-start">{{ timeslot.start|date:"H:i" }}</div> <div class="show-abbrevs"> {% for showinformation in timeslot.show.showinformation.all %} - <span class="si-{{ showinformation.abbrev }}">{{ showinformation.abbrev }}</span> + <span class="abbrev si-{{ showinformation.abbrev }}"><span>{{ showinformation.abbrev }}</span></span> {% endfor %} {% for showtopic in timeslot.show.showtopic.all %} - <span class="st-{{ showtopic.abbrev }}">{{ showtopic.abbrev }}</span> + <span class="abbrev st-{{ showtopic.abbrev }}"><span>{{ showtopic.abbrev }}</span></span> {% endfor %} {% for musicfocus in timeslot.show.musicfocus.all %} - <span class="mf-{{ musicfocus.abbrev }}">{{ musicfocus.abbrev }}</span> + <span class="abbrev mf-{{ musicfocus.abbrev }}"><span>{{ musicfocus.abbrev }}</span></span> {% endfor %} </div> <div class="show-detail"> diff --git a/templates/program/show_list.html b/templates/program/show_list.html index 2b0cb9c..8870f2d 100644 --- a/templates/program/show_list.html +++ b/templates/program/show_list.html @@ -26,13 +26,13 @@ <div class="show bf-{{ show.broadcastformat.slug }}"> <div class="show-abbrevs"> {% for showinformation in show.showinformation.all %} - <span class="si-{{ showinformation.abbrev }}">{{ showinformation.abbrev }}</span> + <span class="abbrev si-{{ showinformation.abbrev }}"><span>{{ showinformation.abbrev }}</span></span> {% endfor %} {% for showtopic in show.showtopic.all %} - <span class="st-{{ showtopic.abbrev }}">{{ showtopic.abbrev }}</span> + <span class="abbrev st-{{ showtopic.abbrev }}"><span>{{ showtopic.abbrev }}</span></span> {% endfor %} {% for musicfocus in show.musicfocus.all %} - <span class="mf-{{ musicfocus.abbrev }}">{{ musicfocus.abbrev }}</span> + <span class="abbrev mf-{{ musicfocus.abbrev }}"><span>{{ musicfocus.abbrev }}</span></span> {% endfor %} </div> <div class="show-detail"> |