{% extends 'layout/base.html' %} {# Dashboard Base Template Extended layout for full-screen dashboard pages (ADSB, AIS, Satellite, etc.) Features: Full-height layout, stats strip, sidebar overlay on mobile Variables: - active_mode: The current mode for nav highlighting (e.g., 'adsb', 'ais', 'satellite') #} {% block styles %} {{ super() }} {% endblock %} {% block header %}
{% block dashboard_title %}DASHBOARD{% endblock %} // iNTERCEPT
{% block dashboard_header_center %}{% endblock %}
{% block agent_selector %}{% endblock %}
{% endblock %} {% block navigation %} {# Include the unified nav partial with active_mode set #} {% if not embedded %} {% include 'partials/nav.html' with context %} {% endif %} {% endblock %} {% block main %} {# Background effects #}
{% block dashboard_bg %}
{% endblock %}
{# Stats strip #} {% block stats_strip %}{% endblock %} {# Dashboard content #}
{% block dashboard_content %}{% endblock %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}