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
Plaintext
20 lines
439 B
Plaintext
5 years ago
|
{% 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 %}
|