From f3cf1d88e8bbc17025cc4f477568f2995dd99af1 Mon Sep 17 00:00:00 2001
From: Johannes Raggam <raggam-nl@adm.at>
Date: Thu, 14 Apr 2011 15:53:24 +0200
Subject: filter titles, optimizations


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">
-- 
cgit v0.10.2