{# /** * @file * Template for status messages. */ #} {% set types = { status: 'alert-success', warning: 'alert-warning', error: 'alert-danger', info: 'alert-info', primary: 'alert-primary', secondary: 'alert-secondary', light: 'alert-light', dark: 'alert-dark' } %} {% for type, messages in message_list %}
{% embed 'varbase_components:alert' with { type: types[type], } %} {% block content %} {% if status_headings[type] %}

{{ status_headings[type] }}

{% endif %} {% if messages|length > 1 %} {% else %} {{ messages|first }} {% endif %} {% endblock %} {% endembed %}
{% endfor %}