diff --git a/webapp_calendar.py b/webapp_calendar.py
index 705058672..3f6b3d041 100644
--- a/webapp_calendar.py
+++ b/webapp_calendar.py
@@ -484,9 +484,13 @@ def html_calendar(person_cache: {}, css_cache: {}, translate: {},
str(year) + '?month=' + \
str(month_number) + '?day=' + str(day_of_month)
day_description = month_name + ' ' + str(day_of_month)
+ datetime_str = \
+ str(year) + '-' + str(month_number) + '-' + \
+ str(day_of_month)
day_link = '' + \
- str(day_of_month) + ''
+ ''
# accessibility menu links
menu_option_str = \
html_hide_from_screen_reader('📅') + ' ' + \