<section>
{{ include('facility/partials/facilities-filter.html.twig', with_context = false ) }}
<div class="js-ajax-form__notifications mb-3" hidden></div>
{{ include('includes/loading/loading-overlay.html.twig', {
'className': 'js-ajax-form__loading',
'isMobileFixed': true
}, with_context = false) }}
<div class="container">
{{ include('navigation/tabs.html.twig', {
'className': 'mt-5',
'isTabbing': true,
'isDynamicTabbing': true,
'items': tabs|default([])
}, with_context = false) }}
</div>
<div class="tab-content position-relative">
{% for item in tabs|default([]) %}
<div class="tab-pane fade {{ loop.index == loop.first ? 'show active' : '' }}" id="{{ item.targetId }}" role="tabpanel"
aria-labelledby="{{ item.id }}">
{{ include('includes/loading/loading-overlay.html.twig', {
'className': 'js-dynamic-tabbing__loading'
}, with_context = false) }}
<div class="js-dynamic-tabbing__content"></div>
</div>
{% endfor %}
</div>
</section>