{% include "_toast_container.html.twig" %}
{# Here will be the real content be injected#}
{% block content %}
{% endblock %}
{% block scripts %}
{% endblock %}
{% for label, messages in app.flashes() %}
{% for message in messages %}
{{ include('_toast.html.twig', {
'label': label,
'message': message
}) }}
{% endfor %}
{% endfor %}
{# Allow pages to request a fully reload of everything #}
{% if global_reload_needed is defined and global_reload_needed %}
{% endif %}