diff options
author | Johannes Raggam <raggam-nl@adm.at> | 2011-04-12 11:01:42 (GMT) |
---|---|---|
committer | Johannes Raggam <raggam-nl@adm.at> | 2011-04-12 11:01:54 (GMT) |
commit | 353a33e08a718c7b1150aa60a352960948244acb (patch) | |
tree | a523b854cad53cadd2ea39d6e5b6cc664f46a8dd /helsinki/program/templates | |
parent | ba41badf0171cd618034e4c9eb21893eaf1ccd90 (diff) |
classes directly on element to be altered instead of one level above
Diffstat (limited to 'helsinki/program/templates')
3 files changed, 6 insertions, 6 deletions
diff --git a/helsinki/program/templates/program/box_musicfocus.html b/helsinki/program/templates/program/box_musicfocus.html index da2c90f..9f57b60 100644 --- a/helsinki/program/templates/program/box_musicfocus.html +++ b/helsinki/program/templates/program/box_musicfocus.html @@ -4,8 +4,8 @@ <dd class="portletItem"> <ul> {% for item in musicfoci %} - <li class="mf-{{ item.abbrev }}"> - <a href="?musicfocus={{ item.slug }}">{{ item }}</a> + <li> + <a class="filteritem mf-{{ item.abbrev }}" href="?musicfocus={{ item.slug }}">{{ item }}</a> </li> {% endfor %} </ul> diff --git a/helsinki/program/templates/program/box_showinformation.html b/helsinki/program/templates/program/box_showinformation.html index a3171d0..9a08ddc 100644 --- a/helsinki/program/templates/program/box_showinformation.html +++ b/helsinki/program/templates/program/box_showinformation.html @@ -4,8 +4,8 @@ <dd class="portletItem"> <ul> {% for item in showinformations %} - <li class="si-{{ item.abbrev }}"> - <a href="?showinformation={{ item.slug }}">{{ item }}</a> + <li> + <a class="filteritem si-{{ item.abbrev }}" href="?showinformation={{ item.slug }}">{{ item }}</a> </li> {% endfor %} </ul> diff --git a/helsinki/program/templates/program/box_showtopic.html b/helsinki/program/templates/program/box_showtopic.html index 79e9519..3dd7e88 100644 --- a/helsinki/program/templates/program/box_showtopic.html +++ b/helsinki/program/templates/program/box_showtopic.html @@ -4,8 +4,8 @@ <dd class="portletItem"> <ul> {% for item in showtopics %} - <li class="st-{{ item.abbrev }}"> - <a href="?showtopic={{ item.slug }}">{{ item }}</a> + <li> + <a class="filteritem st-{{ item.abbrev }}" href="?showtopic={{ item.slug }}">{{ item }}</a> </li> {% endfor %} </ul> |