summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2011-04-13 18:58:35 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2011-04-13 18:58:35 (GMT)
commit885303f4db0a1c924425a70427c53fe49cdc705c (patch)
tree85bb1ec1355c31e0ea96e7e573be62ed313c2ccb /templates
parent103a909a999ecb8e2bce2cf84e4ec39968223a53 (diff)
parent3b35294c5bc03129366ec30153a96ac6d8ba41e0 (diff)
Merge branch 'master' of github.com:nnrcschmdt/helsinki
Diffstat (limited to 'templates')
-rw-r--r--templates/program/boxes/musicfocus.html4
-rw-r--r--templates/program/boxes/showinformation.html4
-rw-r--r--templates/program/boxes/showtopic.html4
-rw-r--r--templates/program/day_schedule.html8
4 files changed, 10 insertions, 10 deletions
diff --git a/templates/program/boxes/musicfocus.html b/templates/program/boxes/musicfocus.html
index 7b78f81..9f57b60 100644
--- a/templates/program/boxes/musicfocus.html
+++ b/templates/program/boxes/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/templates/program/boxes/showinformation.html b/templates/program/boxes/showinformation.html
index bff9486..9a08ddc 100644
--- a/templates/program/boxes/showinformation.html
+++ b/templates/program/boxes/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/templates/program/boxes/showtopic.html b/templates/program/boxes/showtopic.html
index b545476..3dd7e88 100644
--- a/templates/program/boxes/showtopic.html
+++ b/templates/program/boxes/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>
diff --git a/templates/program/day_schedule.html b/templates/program/day_schedule.html
index a0e1ac4..72c9560 100644
--- a/templates/program/day_schedule.html
+++ b/templates/program/day_schedule.html
@@ -27,8 +27,8 @@
<div id="timeslots">
{% for timeslot in timeslots %}
- <div class="timeslot bcformat-{{ timeslot.show.broadcastformat.slug }}">
- <div class="start">{{ timeslot.start|date:"H:i" }}</div>
+ <div class="timeslot bf-{{ timeslot.show.broadcastformat.slug }}">
+ <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>
@@ -41,12 +41,12 @@
{% endfor %}
</div>
<div class="show">
- <h3 class="name"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></h3>
+ <h3 class="show-title"><a href="{% url timeslot-detail timeslot.id %}">{{ timeslot.show.name }}</a></h3>
{% if timeslot.note %}
<p class="note-title"><strong>Heute:</strong> {{ timeslot.note.title }}</p>
{% else %}
{% if timeslot.show.short_description != 'FIXME' %}
- <p class="short-description">{{ timeslot.show.short_description }}</p>
+ <p class="show-description">{{ timeslot.show.short_description }}</p>
{% endif %}
{% endif %}
</div>