templates/includes/aside/biographies/bio_formation.html.twig line 1

Open in your IDE?
  1. {% if ecoles is defined and ecoles is not empty %}
  2. <section class="tc-panel tc-border-neutral">
  3.     <div class="tc-panel-header tc-bg-extralight-gray">
  4.         <h3>Formation</h3>
  5.     </div>
  6.     <div class="tc-panel-body">
  7.         <div class="tc-block">
  8.             <ul class="tc-block-body tc-clean-list">
  9.                 {% for ecole in ecoles %}
  10.                 <li>
  11.                     {% set urlEtudiant = 'anciens-etudiants' %}
  12.                     {% if ecole.current is defined %}
  13.                         {% set urlEtudiant = 'etudiants' %}
  14.                     {% endif %}
  15.                     <a href="/contacts/{{ ecole.url_clean }}/{{ urlEtudiant }}/?promo={{ ecole.promo }}">{{ ecole.organisation }}, Promotion {{ ecole.promo }}</a>
  16.                 </li>
  17.                 {% endfor %}
  18.             </ul>
  19.         </div>
  20.     </div>
  21. </section>
  22. {% endif %}