Icon at bottom

merge-requests/30/head
Bob Mottram 2022-02-21 11:51:11 +00:00
parent b85059b4d9
commit e30d3b6352
1 changed files with 3 additions and 2 deletions

View File

@ -243,6 +243,9 @@ def _html_calendar_day(person_cache: {}, css_cache: {}, translate: {},
event_place + '</span></td>' + \
delete_button_str + '</tr>\n'
calendar_str += '</tbody>\n'
calendar_str += '</table></main>\n'
# icalendar download link
calendar_str += \
' <a href="/users/' + path + '?ical=true" ' + \
@ -250,8 +253,6 @@ def _html_calendar_day(person_cache: {}, css_cache: {}, translate: {},
'<img class="ical" src="/icons/ical.png" ' + \
'title="iCalendar" alt="iCalendar" /></a>\n'
calendar_str += '</tbody>\n'
calendar_str += '</table></main>\n'
calendar_str += html_footer()
return calendar_str