{% macro alert(message, tone='info', title='', dismissible=False, attrs='') -%}
{% if title %}{{ title }}{% endif %} {{ message }} {% if dismissible %}{% endif %}
{%- endmacro %} {% macro notification(message, tone='info', title='', attrs='') -%}
{% if title %}{{ title }}{% endif %} {{ message }}
{%- endmacro %} {% macro status_pill(label, tone='neutral', attrs='') -%} {{ label }} {%- endmacro %} {% macro flash_stack(messages) -%}
{% for item in messages %} {{ alert(item.message, item.tone|default('info'), item.title|default('')) }} {% endfor %}
{%- endmacro %}