{% 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 %} {% if app.session.flashBag.peek('warning')|length > 0 %} {% embed '_partials/_modal.html.twig' with { 'level': 'warning', 'modal': true } %} {% block title %} Hinweis {% endblock %} {% block content %} {% include '_partials/_alert.html.twig' with { level: 'warning', messages: app.flashes('warning') } %} {% endblock %} {% endembed %} {% endif %}