diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-07-16 12:51:22 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2011-07-16 12:51:22 (GMT) |
commit | ef6876f2e319ca3a254efdff8dde75a8343648ea (patch) | |
tree | 219e481491e2a1388fb279feff2a1fa5c7afd3f5 /templates | |
parent | 9976b9ebe22a6ec062911ed247742cabb101c626 (diff) |
reverser order of notes.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/program/show_detail.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/program/show_detail.html b/templates/program/show_detail.html index 9311acc..3a61000 100644 --- a/templates/program/show_detail.html +++ b/templates/program/show_detail.html @@ -58,7 +58,7 @@ <br /> <h2>Sendungstipps</h2> <ul class="recommendations-list"> - {% for note in show.notes.all %} + {% 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> {% endfor %} </ul> |