diff --git a/shared/templates/styleguide2/includes/organisms/main_section/district/calendar.html b/shared/templates/styleguide2/includes/organisms/main_section/district/calendar.html
index 8921ed60940b6cfd4badbfe4a6ba2b0e3a9463ee..b38f57d592f66fc73a4af1e8daebe6b0e3cffad9 100644
--- a/shared/templates/styleguide2/includes/organisms/main_section/district/calendar.html
+++ b/shared/templates/styleguide2/includes/organisms/main_section/district/calendar.html
@@ -5,7 +5,8 @@
     </h2>
     <div class="flex flex-wrap">
       <div class="__js-root flex items-center justify-center h-full mb-4 w-full">
-        <ui-full-calendar events='{{ page.get_fullcalendar_data }}'></ui-full-calendar>
+        {% firstof page.get_fullcalendar_data page.root_page.get_fullcalendar_data as calendar_data %}
+        <ui-full-calendar events='{{ calendar_data }}'></ui-full-calendar>
       </div>
     </div>
     <div></div>