{% block breadcrumbs %}
{# Auto-render breadcrumbs if available and not on dashboard #}
{% if auto_breadcrumbs and request.path != '/' %}
{{ breadcrumb(auto_breadcrumbs) }}
{% endif %}
{% endblock %}
{% block header %}
v{{ version }}
{% endblock %}
{% block alerts %}
{% if tier_alerts %}
{% for alert in tier_alerts %}
{% endfor %}
{% endif %}
{% endblock %}
{# Onboarding checklist - shown when setup is incomplete and not on setup page #}
{% block onboarding %}
{% set setup_status = get_setup_status() %}
{% if setup_status.percent < 100 and not request.path.startswith('/setup') %}
{% block page_title %}MySQL to Sheets Sync{% endblock %}
{% block page_subtitle %}{% endblock %}
{{ alert.title }}
{{ alert.message }}
{% if alert.cta_url %}
{{ alert.cta_text }}
{% endif %}
{{ onboarding_checklist(setup_status) }}
{% endif %}
{% endblock %}
{% block content %}{% endblock %}