diff options
author | Johannes Raggam <raggam-nl@adm.at> | 2011-07-07 16:39:09 (GMT) |
---|---|---|
committer | Johannes Raggam <raggam-nl@adm.at> | 2011-07-07 16:39:09 (GMT) |
commit | 1e2805f1b636c45902a38d0224e11f8a4a4b0c94 (patch) | |
tree | 2c10a4e867efd6182f20c7b2bf556e2c79852bd3 /templates/program/show_detail.html | |
parent | b53737eeb55cbb444e5e4fd7b915728a67d34222 (diff) |
upd
Diffstat (limited to 'templates/program/show_detail.html')
-rw-r--r-- | templates/program/show_detail.html | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/templates/program/show_detail.html b/templates/program/show_detail.html index 109c169..99c9d3e 100644 --- a/templates/program/show_detail.html +++ b/templates/program/show_detail.html @@ -57,12 +57,13 @@ </p> {% if show.notes.all %} + <br /> <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> | - {% endfor %} - </p> + <ul> + {% for note in show.notes.all %} + <li><a href="{% url timeslot-detail note.timeslot.id %}" title="{{ note.title }}">{{ note.start|date:"d. M Y" }}</a>: <div>{{ note.title }}</div></li> + {% endfor %} + </ul> {% endif %} </div> |