diff options
author | Christian Franke <nobody@nowhere.ws> | 2016-04-04 10:50:01 -0300 |
---|---|---|
committer | Christian Franke <nobody@nowhere.ws> | 2016-04-04 10:50:01 -0300 |
commit | ba3980c525e4609597d5e72ed65f557c63cd0722 (patch) | |
tree | 17612f449f141e0ebd07711a3bef4d5791df19de | |
parent | 4d7d0c7cf9ed9e4a4744e4d671211eb814df29b0 (diff) |
Fix missing percent sign
-rw-r--r-- | template/calendar.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/calendar.j2 b/template/calendar.j2 index 8e993a6..ea851a2 100644 --- a/template/calendar.j2 +++ b/template/calendar.j2 @@ -8,7 +8,7 @@ <span class="date"> {%- if event.multiday %} {{- event.start.strftime('%A, %d. %B %Y').decode('utf-8') }} - {{ event.end.strftime('%A, %d. %B %Y').decode('utf-8') }} - {%- else %}{{ event.start.strftime('%A, d. %B %Y, %H:%M Uhr').decode('utf-8') }} + {%- else %}{{ event.start.strftime('%A, %d. %B %Y, %H:%M Uhr').decode('utf-8') }} {%- endif -%} </span> <span class="name">{{ event.name }}</span></p> <div> |