All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m3s
The calendar blueprint was nested under calendars (admin), making URLs
/{slug}/admin/{calendar_slug}/ instead of /{slug}/{calendar_slug}/.
Register calendar blueprint directly on the app and update all endpoint
references from calendars.calendar.* to calendar.* (37 in Python,
~50 in templates).
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
462 B
Python
10 lines
462 B
Python
from .all_events.routes import register as register_all_events
|
|
from .calendar.routes import register as register_calendar
|
|
from .calendars.routes import register as register_calendars
|
|
from .markets.routes import register as register_markets
|
|
from .payments.routes import register as register_payments
|
|
from .page.routes import register as register_page
|
|
from .fragments import register_fragments
|
|
from .actions import register_actions
|
|
from .data import register_data
|