summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/program/show_detail.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/program/show_detail.html b/templates/program/show_detail.html
index ae1690a..10a2702 100644
--- a/templates/program/show_detail.html
+++ b/templates/program/show_detail.html
@@ -56,11 +56,15 @@
{% endif %}
</p>
+ {% if show.notes.all %}
+ <h2>Sendungstipps</h2>
<p>
{% for note in show.notes.all %}
- <a href="{% url timeslot-detail note.timeslot.id %}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}</a>
+ <a href="{% url timeslot-detail note.timeslot.id %}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}</a> ({{ note.title }})<br />
{% endfor %}
</p>
+ {% endif %}
+
</div>
</body>