You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
439 B
Twig
20 lines
439 B
Twig
{% import 'macros/base.twig' as m %}
|
|
|
|
{{ msg() }}
|
|
|
|
{% for message in errors|default([]) %}
|
|
{{ m.alert(__(message), 'danger') }}
|
|
{% endfor %}
|
|
|
|
{% for message in warnings|default([]) %}
|
|
{{ m.alert(__(message), 'warning') }}
|
|
{% endfor %}
|
|
|
|
{% for message in information|default([]) %}
|
|
{{ m.alert(__(message), 'info') }}
|
|
{% endfor %}
|
|
|
|
{% for message in messages|default([]) %}
|
|
{{ m.alert(__(message), 'success') }}
|
|
{% endfor %}
|