diff options
Diffstat (limited to 'pv/templates/program')
-rw-r--r-- | pv/templates/program/show_detail.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pv/templates/program/show_detail.html b/pv/templates/program/show_detail.html index c75b322..0f4b302 100644 --- a/pv/templates/program/show_detail.html +++ b/pv/templates/program/show_detail.html @@ -67,7 +67,10 @@ <h2>Sendungstipps</h2> <ul class="recommendations-list"> {% for note in show.notes.all reversed %} - <li><a href="{% url timeslot-detail note.timeslot.id %}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}:</a> {{ note.title }}</li> + <li> + <a href="{% url timeslot-detail note.timeslot.id %}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}:</a> + <div class="title">{{ note.title }}</div> + </li> {% endfor %} </ul> {% endif %} |