From ba3980c525e4609597d5e72ed65f557c63cd0722 Mon Sep 17 00:00:00 2001 From: Christian Franke Date: Mon, 4 Apr 2016 10:50:01 -0300 Subject: Fix missing percent sign --- template/calendar.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'template') 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 @@ {%- 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 -%} {{ event.name }}

-- cgit v1.2.1