templates/fiche/_includes/insertion.html.twig line 1

Open in your IDE?
  1. {% if etablissement.texteReferencement.actif == 1 %}
  2.     <div class="fiche-module en-quelques-mots">
  3.         <h2 id="en-quelques-mots">En quelques mots...</h2>
  4.             <div class="ml-4">
  5.             {% set texteReferencement = etablissement.texteReferencement.contenu %}
  6.             {% if texteReferencement is not empty and texteReferencement | striptags | length > 15 %}
  7.                 {{ texteReferencement | raw }}
  8.             {% elseif textePresentation is not null %}
  9.                 {{ textePresentation | raw }}
  10.             {% else %}
  11.                 <!-- TEMPLATE::{{ 'fiche/seo/'~template~'.html.twig' }} -->
  12.                 {% include 'fiche/seo/'~template~'.html.twig' with {
  13.                     'etablissement': etablissement,
  14.                 } only %}
  15.             {% endif %}
  16.             
  17.             {# ----- Texte référencement -------------------------------- #}
  18.             {# Ce bloc de code était dans index.html/ligne 301 #}
  19.             {% set texteReferencementActif = etablissement.texteReferencement.actif %}
  20.             {% if texteReferencementActif and etablissement.typeClient in ['établissement', 'internat'] %}
  21.                 <div class="content clearfix">
  22.                     {# Enrichir la fiche prospect #}
  23.                     {% if not etablissement.isClient %}
  24.                         {% include "fiche/_includes/insertion-non-participant.html.twig" %}
  25.                     {% endif %}
  26.                 </div>
  27.             {% endif %}
  28.             </div>
  29.     </div>
  30. {% endif %}
  31. {% include 'fiche/_includes/videos.html.twig'%}
  32. {% if presentation %}
  33.     <div class="fiche-module presentation">
  34.         <h2 id="presentation">Présentation</h2>
  35.         <ul class="list-unstyled card-two-columns-old">
  36.             {% for ItemsInsertion in presentation | filter( ItemsInsertion=> (
  37.             'COLL-LANG' not in ItemsInsertion.pere and
  38.             'COLL-SPEC-ANC_MT' not in ItemsInsertion.pere and
  39.             'COLL-SPEC-REG_MT' not in ItemsInsertion.pere and
  40.             'LYCPRO-PRESLIBRE_IS' not in ItemsInsertion.pere )
  41.         ) %}
  42.                 <li>
  43.                     {{ ItemsInsertion | itemLibelle | raw }}
  44.                     {{ ItemsInsertion.texte | raw }}
  45.                 </li>
  46.             {% endfor %}
  47.         </ul>
  48.         {% if moduleAccueil %}
  49.             {% set textePresentation = donneeComplementaire(dc,'presentation', 'texte') %}
  50.             {% if textePresentation != "" %}
  51.                 <p class="presentation-texte-complementaire">{{textePresentation  | raw}}</p>
  52.             {% endif %}
  53.         {% endif %}
  54.     </div>
  55. {% endif %}
  56. {% include 'fiche/_includes/diaporamas.html.twig'%}
  57. {% if langues %}
  58.     <div class="fiche-module langues">
  59.         <h2 id="langues">Langues</h2>
  60.         {# Nouvelle version : on reprend les libellés depuis la bdd #}
  61.         <ul class="langues">
  62.             {% set i = 0 %}
  63.             {% set langues2 = langues %}
  64.             {% for ii in langues | filter( ii => ii.niveau == 3 ) %}
  65.                 <li>
  66.                     <span class="langii {{ii.identifiant}}">{{ ii | itemLibelle | raw }}
  67.                         {{ ii.texte | raw }}</span>
  68.                     {% set i2 = 0 %}
  69.                     {% for ii2 in langues2 %}
  70.                     {% if ii2.niveau == 4 and ii2.pere == ii.identifiant %}
  71.                         {% set i2 = i2 + 1 %}
  72.                         {% if i2 == 1 %}:
  73.                         {% endif %}
  74.                         <span class='langii2'>{{ ii2 | itemLibelle | raw }}{{ ii2.texte | raw }}</span>
  75.                     {% endif %}
  76.                     {% endfor %}
  77.                 </li>
  78.                 {% if i2 > 0 %}
  79.                     <style>
  80.                         .{{ii.identifiant}}{
  81.                             font-weight: bold;
  82.                         }
  83.                     </style>
  84.                 {% endif %}
  85.             {% endfor %}
  86.         </ul>
  87.     </div>
  88. {% endif %}
  89. {% if etablissement.video %}
  90. <div class="fiche-module video">
  91.     <h2 id="video">Vidéo de présentation</h2>
  92.     <iframe src="{{etablissement.video}}?rel=0" height="280" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  93. </div>{% endif %}{% if formations %}
  94. <div class="fiche-module formations">
  95.     <h2 id="bloc-formations">Formations</h2>
  96.     {% for ItemsInsertion in formations | filter ( ItemsInsertion => (
  97.              'Autre, précisez' in ItemsInsertion.libelle 
  98.             and '-FORMA-TXTS' in ItemsInsertion.identifiant )
  99.         ) %}
  100.         {% if ItemsInsertion.texte is not empty %}
  101.             {{ ItemsInsertion.texte | raw }}
  102.         {% endif %}
  103.     {% endfor %}
  104.     {% for ItemsInsertion in formations %}
  105.         {% if loop.first %}
  106.             {% set previous_formation = ItemsInsertion %}
  107.         {% else %}
  108.             {% set previous_formation = formations[loop.index0 - 1] %}
  109.         {% endif %}
  110.         {% if loop.last %}
  111.             {% set next_formation = ItemsInsertion %}
  112.         {% else %}
  113.             {% set next_formation = formations[loop.index0 + 1] %}
  114.         {% endif %}
  115.         {%if loop.length == 1 %}
  116.             {% set previous_formation = ItemsInsertion %}
  117.             {% set next_formation = ItemsInsertion %}
  118.         {% endif %}
  119.         {% set niveauxFormation = ["-CAP-", "-BACP-", "-BAC2-", "-PREPA-", "-BAC3-", "-BAC45-", "-ING-", "-FPC-", "-BACTECH-", "-DIPCOMP-"] %}
  120.         {% for niveauFormation in niveauxFormation %}
  121.             {% if niveauFormation in ItemsInsertion.identifiant %}
  122.                 {% if previous_formation == ItemsInsertion  or niveauFormation not in previous_formation.identifiant  %}
  123.                     <div class="niveau-formation">
  124.                         {% set title = ''%}
  125.                         {% if niveauFormation == '-CAP-'%}
  126.                             {% set title = 'Niveau CAP' %}
  127.                         {% elseif niveauFormation == '-BACP-'%}
  128.                             {% set title = 'Niveau BAC Pro' %}
  129.                         {% elseif niveauFormation == '-BAC2-'%}
  130.                             {% set title = 'Niveau Bac+2' %}
  131.                         {% elseif niveauFormation == '-PREPA-'%}
  132.                             {% set title = 'Classes Prépas' %}
  133.                         {% elseif niveauFormation == '-BAC3-'%}
  134.                             {% set title = 'Niveau Bac+3' %}
  135.                         {% elseif niveauFormation == '-BAC45-'%}
  136.                             {% set title = 'Niveau Bac+4/5' %}
  137.                         {% elseif niveauFormation == '-ING-'%}
  138.                             {% set title = 'Diplômes d\'ingénieurs' %}
  139.                         {% elseif niveauFormation == '-FPC-'%}
  140.                             {% set title = 'Formation Professionnelle Continue' %}
  141.                         {% elseif niveauFormation == '-BACTECH-'%}
  142.                             {% set title = 'Bac Techno (Agricole)' %}
  143.                         {% elseif niveauFormation == '-DIPCOMP-'%}
  144.                             {% set title = 'Diplômes complémentaires' %}
  145.                         {% endif %}
  146.           <h3>{{title}}</h3>
  147.           <!-- Afficher des compléments AVANT -->
  148.          {% if (
  149.                 ItemsInsertion.niveau == 3 and
  150.                 'Texte avant liste des diplômes' in ItemsInsertion.libelle and
  151.                 'LYC-BACTEC' not in ItemsInsertion.identifiant
  152.             )
  153.         %}
  154.             <p class="texte-complementaire txt-avant-diplomes">{{ ItemsInsertion.texte | raw }}</p>
  155.         {% endif %}
  156.         <ul class="list-unstyled card-two-columns-old l-174">
  157.     {% endif %}
  158.     {% endif %}
  159.   {% endfor %}
  160.         {% if
  161.                 '-LANG' not in ItemsInsertion.pere and
  162.                 '-ANC_MT' not in ItemsInsertion.pere and
  163.                 '-FORMA2021-' not in ItemsInsertion.pere and
  164.                 '-SPEC-REG_MT' not in ItemsInsertion.pere and
  165.                 '-LANG-REG_MT' not in ItemsInsertion.pere and
  166.                 'LYC-BACTEC-' not in ItemsInsertion.identifiant
  167.         %}
  168.             {% if ItemsInsertion.niveau == 4 %}
  169.                 <li class="l-188">
  170.                     <strong id="{{ ItemsInsertion.id }}">
  171.                         {{ ItemsInsertion | itemLibelle | raw }}
  172.                         {% if ItemsInsertion.options is not empty %} - {{ ItemsInsertion | itemOptions }} {% endif %}
  173.                         {% if ItemsInsertion.texte is not empty %} {{ ItemsInsertion.texte | raw }} {% endif %}
  174.                     </strong>
  175.                     {% set complementTexte = donneeComplementaire(dc, ItemsInsertion.identifiant, 'texte') %}
  176.                     {# {% if complementTexte %}
  177.                         <p class="texte">{{ complementTexte | raw }}</p>
  178.                     {% endif %} #}
  179.                     {% set complementUrlLibelle = donneeComplementaire(dc, ItemsInsertion.identifiant, 'urlLibelle') %}
  180.                     {% set complementUrl = donneeComplementaire(dc, ItemsInsertion.identifiant, 'url') %}
  181.                     {% if complementTexte or complementUrlLibelle or complementUrl %}
  182.                         <p class="texte-complementaire formation-niv-4">{{ complementTexte | raw }}</p>
  183.                         {% if complementUrl %}
  184.                             {% if complementUrlLibelle == "" %}
  185.                                 {% set complementUrlLibelle = "En savoir plus" %}
  186.                             {% endif %}
  187.                             <a class="texte-complementaire-url" href='{{ complementUrl }}' target="_blank" data-trace-action="{{ constant('App\\Entity\\Trace::TEXTE_COMPLEMENTAIRE') | e('html_attr') }}" data-trace-etab="{{ etablissement.id | e('html_attr') }}">
  188.                                 {{ complementUrlLibelle | raw }}
  189.                             </a>
  190.                         {% endif %}
  191.                     {% endif %}
  192.                 </li>
  193.             {% endif %}
  194.           {% endif %}
  195. {% for niveauFormation in niveauxFormation %}
  196.   {% if niveauFormation in ItemsInsertion.identifiant  %}
  197.   {% if next_formation == ItemsInsertion  or niveauFormation not in next_formation.identifiant  %}
  198.     </ul>
  199.     <!-- Afficher des compléments -->
  200.     {%  if (
  201.             ItemsInsertion.niveau == 3 and
  202.             'Texte après liste des diplômes' in ItemsInsertion.libelle and
  203.             'LYC-BACTEC' not in ItemsInsertion.identifiant
  204.         )
  205.     %}
  206.         <p class="texte-complementaire txt-apres-diplomes">{{ ItemsInsertion.texte | raw }}</p>
  207.     {% endif %}
  208.     </div>
  209.     {% endif %}
  210.     {% endif %}
  211.     {% endfor %}
  212.     {% endfor %}
  213.     {# ------ Bloc "Bac 2021" ------------------------------- #}
  214.     <ul class="bloc_2021">
  215.         {% set i = 0 %}
  216.         {% for ItemsInsertion in formations %}
  217.             {% if ItemsInsertion.pere == 'LYC-FORMA2021' or ItemsInsertion.pere == 'LYC-FORMA2021-SPEC' or ItemsInsertion.pere == 'LYC-FORMA2021-GFACU' %}
  218.         {% if i == 0 %}<li><strong id="{{ ItemsInsertion.id }}">Bac Général : </strong> <ul class="list-unstyled card-two-columns-old">{%endif%}
  219.             <li class="{{ ItemsInsertion.identifiant in ['LYC-FORMA2021-SPEC', 'LYC-FORMA2021-GFACU'] ? 'title' : 'sub-title'}}">{{ ItemsInsertion | itemLibelle | replace({'<br />': '', '<br/>': '', '<b>': ''}) | raw }}
  220.                 {% if ItemsInsertion.texte %}
  221.                     {{ ItemsInsertion.texte | raw }}
  222.                 {% endif %}
  223.             </li>
  224.             {% set i = i +1 %}
  225.             {% endif %}
  226.         {% endfor %}
  227.         {% if i != 0 %}</ul>{%endif%}
  228.         {% if i != 0 %}</li>{%endif%}
  229.     </ul>
  230.     {# ------ Bloc "Bac Général" ------------------------------- #}
  231.     <ul class="general">
  232.         {% set i = 0 %}
  233.         {% for ItemsInsertion in formations %}
  234.             {% if ItemsInsertion.pere == 'LYC-FORMA' %}
  235.             {% if i == 0 %}<li><strong id="{{ ItemsInsertion.id }}">Bac Général : </strong>{%endif%}
  236.             {{ ItemsInsertion | itemLibelle }} {{ ItemsInsertion.texte | raw }}
  237.             {% set i = i +1 %}
  238.             {% endif %}
  239.         {% endfor %}
  240.         {% if i != 0 %}</li>{%endif%}
  241.     </ul>
  242.     {# ------ Bloc "Bacs Technologiquesl" ------------------------------- #}
  243.     <!-- Afficher des compléments AVANT -->
  244.     {% for ItemsInsertion in formations | filter ( ItemsInsertion =>
  245.             ItemsInsertion.niveau == 3 and
  246.             'Texte avant liste des diplômes' in ItemsInsertion.libelle and
  247.             'LYC-BACTEC' in ItemsInsertion.identifiant
  248.         )
  249.     %}
  250.         <p class="texte-complementaire txt-avant-diplomes">{{ ItemsInsertion.texte | raw }}</p>
  251.     {% endfor %}
  252.     <ul class="technologique">
  253.         {% set i = 0 %}
  254.         {% for ItemsInsertion in formations | filter ( ItemsInsertion =>
  255.             'Texte avant liste des diplômes' not in ItemsInsertion.libelle  and
  256.             'Texte après liste des diplômes' not in ItemsInsertion.libelle
  257.             )
  258.         %}
  259.             {% if 'LYC-BACTEC' in ItemsInsertion.pere %}
  260.         {% if i == 0 %}<li><strong id="{{ ItemsInsertion.id }}">Bacs Technologiques : </strong> <ul class="list-unstyled card-two-columns-old">{%endif%}
  261.             <li class="{{ ItemsInsertion.identifiant == 'LYC-BACTEC-TFACU' or  ItemsInsertion.pere != 'LYC-BACTEC-TFACU'  ? 'title' : 'sub-title'}} li-290">
  262.                 {{ ItemsInsertion | itemLibelle | replace({'<br />': '', '<br/>': '', '<b>': ''}) | raw}} <em>{{ ItemsInsertion | itemOptions | raw }}</em> {{ ItemsInsertion.texte | raw }}
  263.                 {# Textes complémentaires des formations #}
  264.                 {# Visiblement ce bloc ne sert à rien, la v2 ci-dessous devrait le remplacer 
  265.                 SELECT * FROM aep.items_insertion where complement_texte is not  null order by complement_updated_at desc;
  266.                 ceci montre que les données complémentaires dans items_insertion n'ont pas été modifiée depuis 11/2019,
  267.                 visiblement remplacées par la table donne_complementaire
  268.                 #}
  269.                 {% if ItemsInsertion.complementTexte or ItemsInsertion.complementUrlLibelle or ItemsInsertion.complementUrl %}
  270.                             <p class="texte-complementaire">{{ ItemsInsertion.complementTexte | raw }}</p>
  271.                             {% if ItemsInsertion.complementUrl %}
  272.                                 <a class="texte-complementaire-url" href='{{ ItemsInsertion.complementUrl }}' target="_blank" data-trace-action="{{ constant('App\\Entity\\Trace::TEXTE_COMPLEMENTAIRE') | e('html_attr') }}" data-trace-etab="{{ etablissement.id | e('html_attr') }}">
  273.                                     {{ ItemsInsertion.complementUrlLibelle | raw }}
  274.                                 </a>
  275.                             {% endif %}
  276.                         {% endif %}
  277.                         {# Textes complémentaires -v2 #}
  278.                         {% set complementTexte = donneeComplementaire(dc, ItemsInsertion.identifiant, 'texte') %}
  279.                         {# {% if complementTexte %}
  280.                                                                         <p class="texte">{{ complementTexte | raw }}</p>
  281.                                                                     {% endif %} #}
  282.                         {% set complementUrlLibelle = donneeComplementaire(dc, ItemsInsertion.identifiant, 'urlLibelle') %}
  283.                         {% set complementUrl = donneeComplementaire(dc, ItemsInsertion.identifiant, 'url') %}
  284.                         {% if complementTexte or complementUrlLibelle or complementUrl %}
  285.                             <p class="texte-complementaire formation-niv-4">{{ complementTexte | raw }}</p>
  286.                             {% if complementUrl %}
  287.                                 {% if complementUrlLibelle == "" %}
  288.                                     {% set complementUrlLibelle = "En savoir plus" %}
  289.                                 {% endif %}
  290.                                 <a class="texte-complementaire-url" href='{{ complementUrl }}' target="_blank" data-trace-action="{{ constant('App\\Entity\\Trace::TEXTE_COMPLEMENTAIRE') | e('html_attr') }}" data-trace-etab="{{ etablissement.id | e('html_attr') }}">
  291.                                     {{ complementUrlLibelle | raw }}
  292.                                 </a>
  293.                             {% endif %}
  294.                         {% endif %}
  295.                     </li>
  296.                     {% set i = i +1 %}
  297.                 {% endif %}
  298.             {% endfor %}
  299.             {% if i != 0 %}
  300.             </ul>
  301.             {%endif%}
  302.             {% if i != 0 %}
  303.             </li>
  304.             {%endif%}
  305.         </ul>
  306.         <!-- Afficher des compléments -->
  307.         {% for ItemsInsertion in formations | filter ( ItemsInsertion => (
  308.             ItemsInsertion.niveau == 3 and
  309.             'Texte après liste des diplômes' in ItemsInsertion.libelle and
  310.             'LYC-BACTEC' in ItemsInsertion.identifiant )
  311.         )
  312.     %}
  313.             <p class="texte-complementaire txt-apres-diplomes">{{ ItemsInsertion.texte | raw }}</p>
  314.         {% endfor %}
  315.     </div>
  316. {% endif %}
  317. {% if classes %}
  318.     <div class="fiche-module classes">
  319.         <h2 id="classes">Classes</h2>
  320.         <ul class="list-unstyled card-two-columns-old">
  321.             {% for ItemsInsertion in classes %}
  322.                 <li>
  323.                     {{ ItemsInsertion | itemLibelle | raw }}
  324.                     {{ ItemsInsertion.texte | raw }}
  325.                 </li>
  326.             {% endfor %}
  327.         </ul>
  328.     </div>
  329. {% endif %}
  330. {% if specificites %}
  331.     <div class="fiche-module specificites">
  332.         <h2 id="specificites">Spécificités</h2>
  333.         <ul class="list-unstyled card-two-columns-old">
  334.             {% for ItemsInsertion in specificites %}
  335.                 {% if loop.index == 1 %}
  336.                 <li>
  337.                 {% endif %}
  338.                 {% if loop.index > 1 and ItemsInsertion.niveau==3 %}
  339.                 </li>
  340.                 <li>
  341.                 {% endif %}
  342.                 {{ ItemsInsertion | itemLibelle | ireplace({'<br />': '', '<br/>': '', '<br>': ''}) | raw }}
  343.                 {{ ItemsInsertion.texte | raw }}
  344.                 {% if ItemsInsertion.niveau==4 %},
  345.                 {% endif %}
  346.             {% endfor %}
  347.         </ul>
  348.         {% if moduleSpecificite %}
  349.             {% set texteSpecificite = donneeComplementaire(dc,'specificite', 'texte') %}
  350.             {% if texteSpecificite != "" %}
  351.                 <p class="specificite-texte-complementaire">{{texteSpecificite  | raw}}</p>
  352.             {% endif %}
  353.         {% endif %}
  354. </div>
  355. {% endif %}
  356. {% if accueil %}
  357.     <div class="fiche-module accueil">
  358.         <h2 id="accueil">Accueil / Accès</h2>
  359.         <ul class="list-unstyled card-two-columns-old">
  360.             {% for ItemsInsertion in accueil %}
  361.                 {% if ItemsInsertion.niveau ==3 %}
  362.                     <li>
  363.                         {{ ItemsInsertion | itemLibelle | raw }}
  364.                         {{ ItemsInsertion.texte | raw }}
  365.                         {% for ItemsInsertionNiv4 in accueil %} 
  366.                             {% if ItemsInsertion.identifiant in ItemsInsertionNiv4.pere %}
  367.                             {{ ItemsInsertionNiv4 | itemLibelle | raw }}
  368.                             {{ ItemsInsertionNiv4.texte | raw }}
  369.                             {% endif %}
  370.                         {% endfor %}
  371.                     </li>
  372.                 {% endif %}
  373.             {% endfor %}
  374.         </ul>
  375.         {% if moduleSpecificite %}
  376.             {% set texteAccueil = donneeComplementaire(dc,'accueil', 'texte') %}
  377.             {% if texteAccueil != "" %}
  378.                 <p class="accueil-texte-complementaire">{{texteAccueil  | raw}}</p>
  379.             {% endif %}
  380.         {% endif %}
  381.     </div>
  382. {% endif %}
  383. {% if prices %}
  384.     <div class="fiche-module prices">
  385.         <h2 id="prices">Frais de scolarité</h2>
  386.         <ul class="list-unstyled card-one-columns">
  387.             {% for ItemsInsertion in prices %}
  388.                 <li>
  389.                     {{ ItemsInsertion | itemLibelle | raw }}
  390.                     {{ ItemsInsertion.valeur | replace({'.': ','}) }}
  391.                     {{ ItemsInsertion.texte | raw }}
  392.                 </li>
  393.             {% endfor %} 
  394.         </ul>
  395.     </div>
  396. {% endif %}
  397. {% include 'fiche/_includes/jpos.html.twig'%}
  398. {% if complement %}
  399.     {% for ItemsInsertion in complement %}
  400.         <div
  401.             class="fiche-module complement">
  402.             {# Ne pas affiche le titre s'il s'agit d'un texte Complémentaire #}
  403.             {% set h2 = ItemsInsertion | itemLibelle %}
  404.             {% if "Texte Complémentaire" not in h2 and h2 is not empty %}
  405.                 <h2>{{ h2 | raw }}</h2>
  406.             {% endif %}
  407.             <p>
  408.                 {{ ItemsInsertion.texte | raw }}
  409.             </p>
  410.         </div>
  411.     {% endfor %}
  412. {% endif %}
  413. {# ------ INTERNAT -------------------------------------- #}
  414. {% if type == 'internat' %}
  415.     {% if  infos %}
  416.         <div class="fiche-module infos">
  417.             <h2 id="info-pratique">Informations pratiques</h2>
  418.             <ul class="list-unstyled card-two-columns-old">
  419.                 {% for ItemsInsertion in infos %}
  420.                     <li>
  421.                         {{ ItemsInsertion | itemLibelle | raw }}
  422.                         {{ ItemsInsertion.texte | raw }}
  423.                     </li>
  424.                 {% endfor %}
  425.             </ul>
  426.         </div>
  427.     {% endif %}
  428.     {% if hebergement %}
  429.         <div class="fiche-module hebergement">
  430.             <h2>Hébergement</h2>
  431.             <ul class="list-unstyled card-two-columns-old">
  432.                 {% for ItemsInsertion in hebergement %}
  433.                     <li>
  434.                         {{ ItemsInsertion | itemLibelle | raw }}
  435.                         {{ ItemsInsertion.texte | raw }}
  436.                     </li>
  437.                 {% endfor %}
  438.             </ul>
  439.         </div>
  440.     {% endif %}
  441.     {% if equipement %}
  442.         <div class="fiche-module equipements">
  443.             <h2 id="equipement">Equipements complémentaires</h2>
  444.             <ul class="list-unstyled card-two-columns-old">
  445.                 {% for ItemsInsertion in equipement %}
  446.                     <li>
  447.                         {{ ItemsInsertion | itemLibelle | raw }}
  448.                         {{ ItemsInsertion.texte | raw }}
  449.                     </li>
  450.                 {% endfor %}
  451.             </ul>
  452.         </div>
  453.     {% endif %}
  454.     {% if accompagnement %}
  455.         <div class="fiche-module accompagnement">
  456.             <h2 id="accompagnement">Accompagnement scolaire</h2>
  457.             <ul class="list-unstyled card-two-columns-old">
  458.                 {% for ItemsInsertion in accompagnement %}
  459.                     <li>
  460.                         {{ ItemsInsertion | itemLibelle | raw }}
  461.                         {{ ItemsInsertion.texte | raw }}
  462.                     </li>
  463.                 {% endfor %}
  464.             </ul>
  465.         </div>
  466.     {% endif %}
  467.     {% if activites %}
  468.         <div class="fiche-module activites">
  469.             <h2 id="perisco">Activité(s) périscolaire(s)</h2>
  470.             <ul class="list-unstyled card-two-columns-old">
  471.                 {% for ItemsInsertion in activites %}
  472.                     <li>
  473.                         {{ ItemsInsertion | itemLibelle | raw }}
  474.                         {{ ItemsInsertion.texte | raw }}
  475.                     </li>
  476.                 {% endfor %}
  477.             </ul>
  478.         </div>
  479.     {% endif %}
  480.     {% if tarifs %}
  481.         <div class="fiche-module tarifs">
  482.             <h2>Tarifs</h2>
  483.             <ul class="list-unstyled card-two-columns-old">
  484.                 {% for ItemsInsertion in tarifs %}
  485.                     <li>
  486.                         {{ ItemsInsertion | itemLibelle | raw }}
  487.                         {{ ItemsInsertion.texte | raw }}
  488.                     </li>
  489.                 {% endfor %}
  490.             </ul>
  491.         </div>
  492.     {% endif %}
  493. {% endif %}
  494. {% include 'fiche/_includes/documents.html.twig'%}
  495. {% include 'fiche/_includes/actualites.html.twig'%}