31 lines
1.2 KiB
Twig
31 lines
1.2 KiB
Twig
{% if app.session.flashBag.peek('error')|length > 0 %}
|
|
{% embed '_partials/_modal.html.twig' with { 'level': 'error', 'modal': true } %}
|
|
{% block title %}
|
|
Fehler
|
|
{% endblock %}
|
|
{% block content %}
|
|
{% include '_partials/_alert.html.twig' with { level: 'error', messages: app.flashes('error') } %}
|
|
{% endblock %}
|
|
{% endembed %}
|
|
{% endif %}
|
|
{% if app.session.flashBag.peek('success')|length > 0 %}
|
|
{% embed '_partials/_modal.html.twig' with { 'level': 'success', 'modal': true } %}
|
|
{% block title %}
|
|
OK
|
|
{% endblock %}
|
|
{% block content %}
|
|
{% include '_partials/_alert.html.twig' with { level: 'success', messages: app.flashes('success') } %}
|
|
{% endblock %}
|
|
{% endembed %}
|
|
{% endif %}
|
|
{% if app.session.flashBag.peek('info')|length > 0 %}
|
|
{% embed '_partials/_modal.html.twig' with { 'level': 'info', 'modal': true } %}
|
|
{% block title %}
|
|
Hinweis
|
|
{% endblock %}
|
|
{% block content %}
|
|
{% include '_partials/_alert.html.twig' with { level: 'info', messages: app.flashes('info') } %}
|
|
{% endblock %}
|
|
{% endembed %}
|
|
{% endif %}
|