2022-07-24 15:19:05 +02:00
|
|
|
{# Insert flashes #}
|
|
|
|
<div class="toasts-global d-none">
|
|
|
|
{% for label, messages in app.flashes() %}
|
|
|
|
{% for message in messages %}
|
|
|
|
{{ include('_toast.html.twig', {
|
|
|
|
'label': label,
|
|
|
|
'message': message
|
|
|
|
}) }}
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{# Allow pages to request a fully reload of everything #}
|
|
|
|
{% if global_reload_needed is defined and global_reload_needed %}
|
|
|
|
<div {{ stimulus_controller('turbo/global_reload') }}></div>
|
|
|
|
{% endif %}
|
|
|
|
|
2022-07-24 15:25:06 +02:00
|
|
|
<div class="d-none" data-title="{% apply trim %}{{ current_page_title }}{% endapply %}" {{ stimulus_controller('turbo/title') }}></div>
|