{# Page header with title and optional subtitle (supports HTML) #} {% macro page_header(title, subtitle=None) %}

{{ title }}

{% if subtitle %}

{{ subtitle | safe }}

{% endif %}
{% endmacro %} {# Collapsible section #} {% macro collapse(title, id=None, checked=False, badge=None, icon=None, subtitle=None) %}
{% if icon %}{{ icon }}{% endif %}{{ title }} {% if badge %}{{ badge }}{% endif %} {% if subtitle %}{{ subtitle }}{% endif %}
{{ caller() }}
{% endmacro %} {# Action button with htmx #} {% macro action_btn(label, url, style="outline", title=None, icon=None) %} {% if title %}
{% endif %} {% if title %}
{% endif %} {% endmacro %} {# Stat card for dashboard #} {% macro stat_card(label, value, color=None, icon=None) %}

{% if icon %}{{ icon }}{% endif %}{{ label }}

{{ value }}

{% endmacro %} {# Data table wrapper #} {% macro table() %}
{{ caller() }}
{% endmacro %}