templates/facility/partials/facility-tabbing-ajax-result.html.twig line 1

Open in your IDE?
  1. <section>
  2.     {{ include('facility/partials/facilities-filter.html.twig', with_context = false ) }}
  3.     <div class="js-ajax-form__notifications mb-3" hidden></div>
  4.     {{ include('includes/loading/loading-overlay.html.twig', {
  5.         'className': 'js-ajax-form__loading',
  6.         'isMobileFixed': true
  7.     }, with_context = false) }}
  8.     <div class="container">
  9.         {{ include('navigation/tabs.html.twig', {
  10.             'className': 'mt-5',
  11.             'isTabbing': true,
  12.             'isDynamicTabbing': true,
  13.             'items': tabs|default([])
  14.         }, with_context = false) }}
  15.     </div>
  16.     <div class="tab-content position-relative">
  17.         {% for item in tabs|default([]) %}
  18.             <div class="tab-pane fade {{ loop.index == loop.first ? 'show active' : '' }}" id="{{ item.targetId }}" role="tabpanel"
  19.                  aria-labelledby="{{ item.id }}">
  20.                 {{ include('includes/loading/loading-overlay.html.twig', {
  21.                     'className': 'js-dynamic-tabbing__loading'
  22.                 }, with_context = false) }}
  23.                 <div class="js-dynamic-tabbing__content"></div>
  24.             </div>
  25.         {% endfor %}
  26.     </div>
  27. </section>