From b4dd65f45377b22c5443a51b8b487ada756438b8 Mon Sep 17 00:00:00 2001 From: Jonathan Weth <git@jonathanweth.de> Date: Sun, 11 Aug 2024 19:45:38 +0200 Subject: [PATCH] Fix end time in substitutions print --- .../apps/chronos/templates/chronos/partials/subs/period.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aleksis/apps/chronos/templates/chronos/partials/subs/period.html b/aleksis/apps/chronos/templates/chronos/partials/subs/period.html index c2af91a1..9aa39762 100644 --- a/aleksis/apps/chronos/templates/chronos/partials/subs/period.html +++ b/aleksis/apps/chronos/templates/chronos/partials/subs/period.html @@ -7,7 +7,7 @@ {{ el.REFERENCE_OBJECT.slot_number_start }}.–{{ el.REFERENCE_OBJECT.slot_number_end }}. {% endif %} {% elif el.DTSTART.dt.time %} - {{ el.DTSTART.dt.time }}–{{ el.DTSTART.dt.time }} + {{ el.DTSTART.dt.time }}–{{ el.DTEND.dt.time }} {% else %} {% trans "all day" %} {% endif %} -- GitLab