From c06e9e61805b30f9a084e158886816522509a219 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 25 May 2022 19:09:57 +0100 Subject: [PATCH] Center header --- webapp_calendar.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webapp_calendar.py b/webapp_calendar.py index 14ce0a8f6..6dce2591a 100644 --- a/webapp_calendar.py +++ b/webapp_calendar.py @@ -131,7 +131,8 @@ def _html_calendar_day(person_cache: {}, css_cache: {}, translate: {}, calendar_str += '
\n' # day header calendar_str += \ - '

\n\n' datetime_str = str(year) + '-' + str(month_number) + '-' + str(day_number) calendar_str += \ @@ -139,7 +140,7 @@ def _html_calendar_day(person_cache: {}, css_cache: {}, translate: {}, '
' + str(year) + '\n' - calendar_str += '

\n' + calendar_str += '

\n\n' calendar_str += '\n' # day events list calendar_str += '\n'