summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJohannes Raggam <raggam-nl@adm.at>2011-04-14 13:53:24 (GMT)
committerJohannes Raggam <raggam-nl@adm.at>2011-04-14 13:53:24 (GMT)
commitf3cf1d88e8bbc17025cc4f477568f2995dd99af1 (patch)
treed3c18233713524ee7fcb8142dd194c94d7be1168 /templates
parent735310947b58eae113b782739bfb64b5c80d583c (diff)
filter titles, optimizations
Diffstat (limited to 'templates')
-rw-r--r--templates/program/boxes/broadcastformat.html2
-rw-r--r--templates/program/boxes/musicfocus.html2
-rw-r--r--templates/program/boxes/showinformation.html2
-rw-r--r--templates/program/boxes/showtopic.html2
-rw-r--r--templates/program/day_schedule.html12
-rw-r--r--templates/program/show_list.html12
6 files changed, 16 insertions, 16 deletions
diff --git a/templates/program/boxes/broadcastformat.html b/templates/program/boxes/broadcastformat.html
index 3ae00e1..4075faa 100644
--- a/templates/program/boxes/broadcastformat.html
+++ b/templates/program/boxes/broadcastformat.html
@@ -3,7 +3,7 @@
<dt class="portletHeader"><span>Legende<span></dt>
{% for broadcastformat in broadcastformats %}
<dd class="portletItem bcformat bf-{{ broadcastformat.slug }}">
- <a href="../?broadcastformat={{ broadcastformat.slug }}">{{ broadcastformat.format }}</a>
+ <a title="Sendungen mit dem Sendungsformat {{broadcastformat.format}} anzeigen." href="../?broadcastformat={{ broadcastformat.slug }}">{{ broadcastformat.format }}</a>
</dd>
{% endfor %}
</dl>
diff --git a/templates/program/boxes/musicfocus.html b/templates/program/boxes/musicfocus.html
index d19655b..01fffae 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="abbrev mf-{{ item.abbrev }}" href="?musicfocus={{ item.slug }}">{{ item }}</a>
+ <a title="Sendungen mit der Musiktendenz {{item.focus}} anzeigen." 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 ede17e2..ac4dc2c 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="abbrev si-{{ item.abbrev }}" href="?showinformation={{ item.slug }}">{{ item }}</a>
+ <a title="Sendungen mit der Information {{item.information}} anzeigen." 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 b1b514e..3a1938d 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="abbrev st-{{ item.abbrev }}" href="?showtopic={{ item.slug }}">{{ item }}</a>
+ <a title="Sendungen mit dem Schwerpunkt {{item.topic}} anzeigen." 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 eb3c8df..d7f4b87 100644
--- a/templates/program/day_schedule.html
+++ b/templates/program/day_schedule.html
@@ -29,14 +29,14 @@
<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="abbrev si-{{ showinformation.abbrev }}"><span>{{ showinformation.abbrev }}</span></span>
+ {% for item in timeslot.show.showinformation.all %}
+ <span title="{{item.information}}" class="abbrev si-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span>
{% endfor %}
- {% for showtopic in timeslot.show.showtopic.all %}
- <span class="abbrev st-{{ showtopic.abbrev }}"><span>{{ showtopic.abbrev }}</span></span>
+ {% for item in timeslot.show.showtopic.all %}
+ <span title="{{item.topic}}" class="abbrev st-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span>
{% endfor %}
- {% for musicfocus in timeslot.show.musicfocus.all %}
- <span class="abbrev mf-{{ musicfocus.abbrev }}"><span>{{ musicfocus.abbrev }}</span></span>
+ {% for item in timeslot.show.musicfocus.all %}
+ <span title="{{item.focus}}" class="abbrev mf-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span>
{% endfor %}
</div>
<div class="show-detail">
diff --git a/templates/program/show_list.html b/templates/program/show_list.html
index 8870f2d..67da0de 100644
--- a/templates/program/show_list.html
+++ b/templates/program/show_list.html
@@ -25,14 +25,14 @@
{% for show in show_list %}
<div class="show bf-{{ show.broadcastformat.slug }}">
<div class="show-abbrevs">
- {% for showinformation in show.showinformation.all %}
- <span class="abbrev si-{{ showinformation.abbrev }}"><span>{{ showinformation.abbrev }}</span></span>
+ {% for item in show.showinformation.all %}
+ <span title="{{item.information}}" class="abbrev si-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span>
{% endfor %}
- {% for showtopic in show.showtopic.all %}
- <span class="abbrev st-{{ showtopic.abbrev }}"><span>{{ showtopic.abbrev }}</span></span>
+ {% for item in show.showtopic.all %}
+ <span title="{{item.topic}}" class="abbrev st-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span>
{% endfor %}
- {% for musicfocus in show.musicfocus.all %}
- <span class="abbrev mf-{{ musicfocus.abbrev }}"><span>{{ musicfocus.abbrev }}</span></span>
+ {% for item in show.musicfocus.all %}
+ <span title="{{item.focus}}" class="abbrev mf-{{ item.abbrev }}"><span>{{ item.abbrev }}</span></span>
{% endfor %}
</div>
<div class="show-detail">