{% set page_group = "admin" %} {% include 'components/head.html' %}
{% include 'components/nav-account.html' %}
{% include 'components/alerts.html' %} {# ================================================================ SCHEDULING ONBOARDING HUB (Spec 051, T2.4) View mode is chosen server-side by SchedulingAccessPolicy::decide() (see OnboardingPageController::getStarted()) - one of: pitch (not yet activated) / checklist (BK-native) / m5 (external provider). Live checklist state is fetched client-side by OnboardingHub.js from GET /api/:t/schedule/onboarding/state (wave 2 - degrades gracefully while that 404s). ================================================================ #}
{% if viewMode == 'checklist' %} {% include 'partials/onboarding/checklist.html' %} {% elseif viewMode == 'm5' %} {% include 'partials/onboarding/m5-external.html' %} {% else %} {% include 'partials/onboarding/pitch.html' %} {% endif %}
{% include 'components/footer.html' %}