From 8b22411d6a0f6d28bace38ed428c85d24defd0e7 Mon Sep 17 00:00:00 2001 From: Luca Date: Wed, 27 Apr 2022 15:26:26 +0200 Subject: [PATCH] Fix time format --- shiftregister/app/templates/helper_base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shiftregister/app/templates/helper_base.html b/shiftregister/app/templates/helper_base.html index aa45e49..64bbaec 100644 --- a/shiftregister/app/templates/helper_base.html +++ b/shiftregister/app/templates/helper_base.html @@ -11,7 +11,7 @@ {% endif %} {% if helper.important_shift %} - {%if helper.important_shift.is_running%}Laufende{% else %}Nächste{% endif %} Schicht ({{ helper.important_shift.start_at|date:"H:m" }}) + {%if helper.important_shift.is_running%}Laufende{% else %}Nächste{% endif %} Schicht ({{ helper.important_shift.start_at|date:"H:i" }}) {% endif %} {% endif %}