diff options
author | Christian Pointner <equinox@helsinki.at> | 2017-03-09 17:15:11 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2017-03-09 17:15:11 (GMT) |
commit | 25b6bfba7d9b658b545673760445730dd915c461 (patch) | |
tree | df7bda0dd08b6239ac7bc1010f42805c5e411d3a /program/templates/timeslot_detail.html | |
parent | 5391d900e79faafd3ace600ef2fc7b4a6e7b5786 (diff) |
Hotfix: datetime.now as callable for query sets to fix implicit 'caching' problem after switching to uwsgi
Diffstat (limited to 'program/templates/timeslot_detail.html')
-rw-r--r-- | program/templates/timeslot_detail.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/templates/timeslot_detail.html b/program/templates/timeslot_detail.html index cfe2b7b..88749a2 100644 --- a/program/templates/timeslot_detail.html +++ b/program/templates/timeslot_detail.html @@ -13,7 +13,7 @@ {% if timeslot.note %} <h2>{{ timeslot.note.title }}</h2> {% endif %} - <strong>Sendung am {{ timeslot.start|date:"d.m. H:i" }} bis {{ timeslot.end|date:"H:i" }}</strong> + <strong>Sendung am {{ timeslot.start|date:"d.m.Y H:i" }} bis {{ timeslot.end|date:"H:i" }}</strong> <div class="show-abbrevs"> {% for si in timeslot.show.showinformation.all %} |