2020-03-01 18:21:16 +01:00
|
|
|
{% import 'macros/base.twig' as m %}
|
|
|
|
|
2023-02-02 22:53:51 +01:00
|
|
|
{% for message in notifications('error') %}
|
2020-03-01 18:21:16 +01:00
|
|
|
{{ m.alert(__(message), 'danger') }}
|
|
|
|
{% endfor %}
|
|
|
|
|
2023-02-02 22:53:51 +01:00
|
|
|
{% for message in notifications('warning') %}
|
2020-03-01 18:21:16 +01:00
|
|
|
{{ m.alert(__(message), 'warning') }}
|
|
|
|
{% endfor %}
|
|
|
|
|
2023-02-02 22:53:51 +01:00
|
|
|
{% for message in notifications('information') %}
|
2020-03-01 18:21:16 +01:00
|
|
|
{{ m.alert(__(message), 'info') }}
|
|
|
|
{% endfor %}
|
|
|
|
|
2023-02-02 22:53:51 +01:00
|
|
|
{% for message in notifications('message') %}
|
2020-03-01 18:21:16 +01:00
|
|
|
{{ m.alert(__(message), 'success') }}
|
|
|
|
{% endfor %}
|