From dcf716c68574e7fbbdbc662b743aec5f2d069bf5 Mon Sep 17 00:00:00 2001 From: giles Date: Tue, 10 Feb 2026 11:52:25 +0000 Subject: [PATCH] fix: make calendar name a link back to calendar view Co-Authored-By: Claude Opus 4.6 --- templates/_types/calendar/header/_header.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/_types/calendar/header/_header.html b/templates/_types/calendar/header/_header.html index 9298a6a..2f4ecf0 100644 --- a/templates/_types/calendar/header/_header.html +++ b/templates/_types/calendar/header/_header.html @@ -1,7 +1,8 @@ {% import 'macros/links.html' as links %} {% macro header_row(oob=False) %} {% call links.menu_row(id='calendar-row', oob=oob) %} -
+ {% call links.link(url_for('calendars.calendar.get', calendar_slug=calendar.slug), hx_select_search) %} +
@@ -11,6 +12,7 @@ {% from '_types/calendar/_description.html' import description %} {{description(calendar)}}
+ {% endcall %} {% call links.desktop_nav() %} {% include '_types/calendar/_nav.html' %} {% endcall %}