templates/includes/aside/ecoles/ecoles_roles.html.twig line 1

Open in your IDE?
  1.         <!-- {if:idrole}
  2.         <div class="tc-block-body">
  3.             <ul>
  4. {#                <li class="tc-active"><a href="{page}/y/{{ annee_promo }}">Tous les étudiants</a></li>#}
  5.             </ul>
  6.         </div>
  7.         {end:} -->
  8.         {% if display_jeu is defined and display_jeu %}
  9.             <div class="tc-block-header">
  10.                 <h4 class="tc-title-medium">Jeu</h4>
  11.             </div>
  12.             <div class="tc-block-body">
  13.                 <ul>
  14.                     {% if annee_promo is not defined or not annee_promo %}
  15.                         {% set annee_promo = '' %}
  16.                     {% endif %}
  17.                     {% for isexe,sexe in menu_sexes %}
  18.                         {% if sexe.active is defined and sexe.active %}
  19.                             <li class="tc-active"><a>{{ sexe.label }}</a></li>
  20.                         {% else %}
  21.                             <li><a href="{{ page }}/role/5/sexe/{{ isexe }}/y/{{ annee_promo }}/photo/{{ photo }}">{{ sexe.label }}</a></li>
  22.                         {% endif %}
  23.                     {% endfor %}
  24.                 </ul>
  25.             </div>
  26.         {% endif %}
  27.         {% if display_others is defined and display_others %}
  28.         <div class="tc-block-header">
  29.             <h4 class="tc-title-medium">Autres sections</h4>
  30.         </div>
  31.         <div class="tc-block-body">
  32.             <ul>
  33.             {% for role in roles %}
  34.                 {% if role.is_jeu is not defined or (role.is_jeu is defined and role.is_jeu == false) %}
  35.                     {% if role.active is defined and role.active %}
  36.                     <li class="tc-active"><a>{{ role.role }}</a></li>
  37.                     {% else %}
  38.                         {% if annee_promo_selected is not defined %}
  39.                             {% set annee_promo_selected = '' %}
  40.                         {% endif %}
  41.                         <li><a href="{{ page }}/role/{{ role.idrole }}/y/{{ annee_promo_selected }}/photo/{{ photo }}">{{ role.role }}</a></li>
  42.                     {% endif %}
  43.                 {% endif %}
  44.             {% endfor %}
  45.             </ul>
  46.         </div>
  47.         {% endif %}