templates/navigation_onglets_formations.twig line 1

Open in your IDE?
  1. {% set active1 = '' %}
  2. {% set active2 = '' %}
  3. {% set active3 = '' %}
  4. {% set active4 = '' %}
  5. {% set active5 = '' %}
  6. {% set active6 = '' %}
  7. {% set active7 = '' %}
  8. {% set active8 = '' %}
  9. {% set active9 = '' %}
  10. {% set active10 = '' %}
  11. {% if nav == 1 %}
  12.     {% set active1 = ' bg-light active' %}
  13. {% elseif nav == 2 %}
  14.     {% set active2 = ' bg-light active' %}
  15. {% elseif nav == 3 %}
  16.     {% set active3 = ' bg-light active' %}
  17. {% elseif nav == 4 %}
  18.     {% set active4 = ' bg-light active' %}
  19. {% elseif nav == 5 %}
  20.     {% set active5 = ' bg-light active' %}
  21. {% elseif nav == 6 %}
  22.     {% set active6 = ' bg-light active' %}
  23. {% elseif nav == 7 %}
  24.     {% set active7 = ' bg-light active' %}
  25. {% elseif nav == 8 %}
  26.     {% set active8 = ' bg-light active' %}
  27. {% elseif nav == 9 %}
  28.     {% set active9 = ' bg-light active' %}
  29. {% elseif nav == 10 %}
  30.     {% set active10 = ' bg-light active' %}
  31. {% endif %}
  32. {% if formation.etat != 1 %}
  33.     {% set disabled = '' %}
  34. {% else %}
  35.     {% set disabled = 'disabled' %}
  36. {% endif %}
  37. <div class="row ms-1 me-1">
  38.     <ul class="nav nav-tabs justify-content-end">
  39.         <li class="nav-item ">
  40.             <a class="nav-link {{ active1 }}" aria-current="page" href="{{ path('formations_show', {'id':formation.id}) }}">Détails</a>
  41.         </li>
  42.         <li class="nav-item">
  43.             <a class="nav-link {{ active2 }}" href="{{ path('formations_show_planning', {'idFormation':formation.id}) }}">Planning</a>
  44.         </li>
  45.         <li class="nav-item">
  46.             <a class="nav-link {{ active3 }}" href="{{ path('formations_show_inscriptions', {'idFormation':formation.id}) }}">Inscriptions</a>
  47.         </li>
  48.         <li class="nav-item">
  49.             <a class="nav-link {{ active4 }}" href="{{ path('formations_show_convocations', {'idFormation':formation.id}) }}">Convocations</a>
  50.         </li>
  51.         {% if formation.bloc.numBloc == 1 %}
  52.         <li class="nav-item">
  53.             <a class="nav-link {{ active5 }} {{ disabled }}" href="{{ path('formations_show_psc1', {'idFormation':formation.id}) }}">Groupes PSC1</a>
  54.         </li>
  55.         {% endif %}
  56.         <li class="nav-item">
  57.             <a class="nav-link {{ active6 }} {{ disabled }}" href="{{ path('formations_show_presences', {'idFormation':formation.id}) }}">Présences</a>
  58.         </li>
  59.         {% if formation.bloc.numBloc == 1 %}
  60.         <li class="nav-item">
  61.             <a class="nav-link {{ active7 }} {{ disabled }}" href="{{ path('formations_show_eval', {'idFormation':formation.id}) }}">Évaluations</a>
  62.         </li>
  63.         {% endif %}
  64.         <li class="nav-item">
  65.             <a class="nav-link {{ active8 }} {{ disabled }}" href="{{ path('formations_show_attestations', {'idFormation':formation.id}) }}">Attestations</a>
  66.         </li>
  67.         {% if formation.bloc.numBloc == 2 %}
  68.         <li class="nav-item">
  69.             <a class="nav-link {{ active9 }} {{ disabled }}" href="{{ path('formations_show_attestations_fin', {'idFormation':formation.id}) }}">Fin de formation</a>
  70.         </li>
  71.         {% endif %}
  72.         <li class="nav-item">
  73.             {% if formation.etat == 3 %}
  74.                 {% set disabledBilan = '' %}
  75.             {% else %}
  76.                 {% set disabledBilan = 'disabled' %}
  77.             {% endif %}
  78.             <a class="nav-link {{ active10 }} {{ disabledBilan }}" href="{{ path('formations_show_bilan', {'idFormation':formation.id}) }}">Bilan</a>
  79.         </li>
  80.         
  81.         
  82.     </ul>
  83. </div>