{# Navigation Component Template - Header and navigation for the dashboard #} {# Macro for main navigation bar #} {% macro navbar(current_page="", user=None) %} {% endmacro %} {# Helper macro for desktop nav link #} {% macro nav_link(label, href, is_active=false) %} {{ label }} {% endmacro %} {# Helper macro for mobile nav link #} {% macro mobile_nav_link(label, href, is_active=false) %} {{ label }} {% endmacro %} {# Macro for breadcrumb navigation #} {% macro breadcrumb(items) %} {% endmacro %} {# Macro for page header with title and actions #} {% macro page_header(title, subtitle=None, actions=None) %}

{{ title }}

{% if subtitle %}

{{ subtitle }}

{% endif %}
{% if actions %}
{{ caller() }}
{% endif %}
{% endmacro %} {# Macro for tab navigation #} {% macro tabs(items, current_tab="", tab_param="tab") %}
{% endmacro %} {# JavaScript for navigation #} {% macro nav_scripts() %} {% endmacro %}