summaryrefslogtreecommitdiff
path: root/templates/program/boxes/current.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/program/boxes/current.html')
-rw-r--r--templates/program/boxes/current.html12
1 files changed, 8 insertions, 4 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 }}">&nbsp;</td>
+ <td class="format bf-{{ previous.show.broadcastformat.slug }}"
+ title="{{ previous.show.broadcastformat.format }}">&nbsp;</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 }}">&#x25B6;</td>
+ <td class="format bf-{{ current.show.broadcastformat.slug }}"
+ title="{{ current.show.broadcastformat.format }}">&#x25B6;</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 }}">&nbsp;</td>
+ <td class="format bf-{{ next.show.broadcastformat.slug }}"
+ title="{{ next.show.broadcastformat.format }}">&nbsp;</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 }}">&nbsp;</td>
+ <td class="format bf-{{ after_next.show.broadcastformat.slug }}"
+ title="{{ after_next.show.broadcastformat.format }}">&nbsp;</td>
<td class="show">
<h3><a href="{% url timeslot-detail after_next.id %}">{{ after_next.show.name }}</a></h3>
</td>