diff options
Diffstat (limited to 'templates/program')
-rw-r--r-- | templates/program/boxes/current.html | 12 | ||||
-rw-r--r-- | templates/program/boxes/recommendations.html | 3 |
2 files changed, 10 insertions, 5 deletions
diff --git a/templates/program/boxes/current.html b/templates/program/boxes/current.html index a88d0ad..81e3498 100644 --- a/templates/program/boxes/current.html +++ b/templates/program/boxes/current.html @@ -13,7 +13,8 @@ <table> <tr class="previous"> <td class="start">{{ previous.start|date:"H:i" }}</td> - <td class="format bf-{{ previous.show.broadcastformat.slug }}"> </td> + <td class="format bf-{{ previous.show.broadcastformat.slug }}" + title="{{ previous.show.broadcastformat.format }}"> </td> <td class="show"> <h3><a href="{% url timeslot-detail previous.id %}">{{ previous.show.name }}</a></h3> </td> @@ -21,7 +22,8 @@ </tr> <tr class="current"> <td class="start">{{ current.start|date:"H:i" }}</td> - <td class="format bf-{{ current.show.broadcastformat.slug }}">▶</td> + <td class="format bf-{{ current.show.broadcastformat.slug }}" + title="{{ current.show.broadcastformat.format }}">▶</td> <td class="show"> <h3><a href="{% url timeslot-detail current.id %}">{{ current.show.name }}</a></h3> {% if current.note %} @@ -35,7 +37,8 @@ </tr> <tr class="next"> <td class="start">{{ next.start|date:"H:i" }}</td> - <td class="format bf-{{ next.show.broadcastformat.slug }}"> </td> + <td class="format bf-{{ next.show.broadcastformat.slug }}" + title="{{ next.show.broadcastformat.format }}"> </td> <td class="show"> <h3><a href="{% url timeslot-detail next.id %}">{{ next.show.name }}</a></h3> </td> @@ -43,7 +46,8 @@ </tr> <tr class="after_next"> <td class="start">{{ after_next.start|date:"H:i" }}</td> - <td class="format bf-{{ after_next.show.broadcastformat.slug }}"> </td> + <td class="format bf-{{ after_next.show.broadcastformat.slug }}" + title="{{ after_next.show.broadcastformat.format }}"> </td> <td class="show"> <h3><a href="{% url timeslot-detail after_next.id %}">{{ after_next.show.name }}</a></h3> </td> diff --git a/templates/program/boxes/recommendations.html b/templates/program/boxes/recommendations.html index 305ffb3..bcb7b58 100644 --- a/templates/program/boxes/recommendations.html +++ b/templates/program/boxes/recommendations.html @@ -13,7 +13,8 @@ {% for item in recommendation_list %} <tr> <td class="start"> </td> - <td class="format bf-{{ item.show.broadcastformat.slug }}"> </td> + <td class="format bf-{{ item.show.broadcastformat.slug }}" + title="{{ item.show.broadcastformat.format }}"> </td> <td class="show"> {{ item.timeslot.start|date:"d.m. H:i" }} - {{ item.timeslot.end|date:"H:i" }}<br /> |