{% for type, flashes in app.session.flashbag.all() %}
{% for flash in flashes %}
{% if type in ['popup', 'unclosable-popup'] %}
<span class="flash {{ type }}" data-url="{{ flash }}"></span>
{% else %}
{% include 'flash/_flash_notification.html.twig' with {'type': type, 'message': flash.message|default(flash), 'parameters': flash.parameters|default({})} %}
{% endif %}
{% endfor %}
{% endfor %}
{% if app.session.get('showvroom_account_disabled') == true %}
<span class="flash unclosable-popup" data-url="{{ path('frontend_user_registration_waiting') }}"></span>
{% endif %}