Extra paragraph

merge-requests/30/head
Bob Mottram 2024-01-22 16:59:45 +00:00
parent a5da249f2e
commit ff8af16f7b
1 changed files with 3 additions and 3 deletions

View File

@ -640,20 +640,20 @@ def html_calendar(person_cache: {}, translate: {},
'?month=' + str(month_number) + \ '?month=' + str(month_number) + \
'?onlyShowReminders=true" ' + \ '?onlyShowReminders=true" ' + \
'tabindex="2" class="imageAnchor">' + \ 'tabindex="2" class="imageAnchor">' + \
translate['Only show reminders'] + '</a>\n' translate['Only show reminders'] + '</a>'
else: else:
show_reminders_link = \ show_reminders_link = \
'<a href="' + cal_actor + '/calendar?year=' + str(year) + \ '<a href="' + cal_actor + '/calendar?year=' + str(year) + \
'?month=' + str(month_number) + \ '?month=' + str(month_number) + \
'?onlyShowReminders=false" ' + \ '?onlyShowReminders=false" ' + \
'tabindex="2" class="imageAnchor">' + \ 'tabindex="2" class="imageAnchor">' + \
translate['Show all events'] + '</a>\n' translate['Show all events'] + '</a>'
new_event_str = \ new_event_str = \
'<br><center>\n<p>\n' + \ '<br><center>\n<p>\n' + \
'<a href="' + cal_actor + '/newreminder' + \ '<a href="' + cal_actor + '/newreminder' + \
'" tabindex="2"> ' + \ '" tabindex="2"> ' + \
translate['Add to the calendar'] + '</a>\n' + \ translate['Add to the calendar'] + '</a></p>\n<p>' + \
show_reminders_link + '</p>\n</center>\n' show_reminders_link + '</p>\n</center>\n'
calendar_icon_str = \ calendar_icon_str = \