{% macro alert(title, message, tone='info') %} {% endmacro %} {% macro badge(text, tone='secondary') %} {{ text }} {% endmacro %} {% macro breadcrumb(items) %} {% endmacro %} {% macro button(label, tone='primary', button_type='button') %} {% endmacro %} {% macro button_group(labels) %}
{% for label in labels %} {{ button(label=label, tone='outline-primary') }} {% endfor %}
{% endmacro %} {% macro card(body) %}
{{ body }}
{% endmacro %} {% macro card_header(title, subtitle='') %}

{{ title }}

{% if subtitle %}

{{ subtitle }}

{% endif %}
{% endmacro %} {% macro dropdown(label, items) %} {% endmacro %} {% macro empty_state(title, subtitle) %}
{{ title }}

{{ subtitle }}

{% endmacro %} {% macro modal_shell(title, body) %} {% endmacro %} {% macro tabs(items, active_id) %} {% endmacro %} {% macro table(columns, rows) %}
{% for column in columns %} {% endfor %} {% for row in rows %} {% for value in row %} {% endfor %} {% endfor %}
{{ column }}
{{ value }}
{% endmacro %} {% macro data_grid(columns, rows) %}
{% for column in columns %} {% endfor %} {% for row in rows %} {% for column in columns %} {% endfor %} {% endfor %}
{{ column }}
{{ row[column] }}
{% endmacro %} {% macro form_input(label, value='', input_type='text', placeholder='') %}
{% endmacro %} {% macro form_select(label, options) %}
{% endmacro %} {% macro form_checkbox(label, checked=False) %} {% endmacro %} {% macro form_radio(name, label, checked=False) %} {% endmacro %} {% macro form_textarea(label, value='') %}
{% endmacro %} {% macro form_selectgroup(options) %}
{% for option in options %} {% endfor %}
{% endmacro %} {% macro pagination(page, total_pages) %} {% endmacro %} {% macro progress(value, label='') %}
{% if label %}
{{ label }}
{% endif %} {{ value }}%
{{ value }}%
{% endmacro %} {% macro status_dot(status, label='') %} {% if label %} {{ label }} {% endif %} {% endmacro %} {% macro avatar_placeholder(text) %} {{ text }} {% endmacro %} {% macro toast_placeholder(title, message) %}
{{ title }}
{{ message }}
{% endmacro %} {% macro offcanvas_shell(title, body) %} {% endmacro %} {% macro chart_container(title) %}

{{ title }}

Inert placeholder. No runtime chart library is loaded.

{% endmacro %} {% macro map_container(title) %}

{{ title }}

Inert placeholder. No external maps provider is loaded.

{% endmacro %} {% macro datatable_container(title) %}

{{ title }}

Inert placeholder. No external datatable plugin is loaded.

{% endmacro %}