private\formations\formation\infos_pratiques.twig line 1

  1. <div class="pratique">
  2.     <div class="titre">Informations pratiques</div>
  3.     <div class="info date">
  4.         <i class="fa-thin fa-fw fa-calendar-days"></i>
  5.         {% set mois_en_fr = {
  6.             'January': 'janvier',
  7.             'February': 'février',
  8.             'March': 'mars',
  9.             'April': 'avril',
  10.             'May': 'mai',
  11.             'June': 'juin',
  12.             'July': 'juillet',
  13.             'August': 'août',
  14.             'September': 'septembre',
  15.             'October': 'octobre',
  16.             'November': 'novembre',
  17.             'December': 'décembre'
  18.         } %}
  19.         {% set mois_en = formation.formations__date_debut|date('F') %}
  20.         {% set mois_en_fin = formation.formations__date_fin|date('F') %}
  21.         {% set mois_fr = mois_en_fr[mois_en] %}
  22.         {% set mois_fin_fr = mois_en_fr[mois_en_fin] %}
  23.         {% if formation.formations__diffusion == 1 and formation.formations__date_fin|date('Y/m/d') < 'NOW'|date('Y/m/d') %}
  24.             Formation à venir
  25.         {% else %}
  26.             {% if formation.formations__date_debut|date('Y') == formation.formations__date_fin|date('Y') %}
  27.                 Du
  28.                 {{ formation.formations__date_debut|date('d') ~ ' ' ~ mois_fr }}
  29.                 au
  30.                 {{ formation.formations__date_fin|date('d') ~ ' ' ~ mois_fin_fr ~ ' ' ~ formation.formations__date_fin|date('Y') }}
  31.             {% else %}
  32.                 Du
  33.                 {{ formation.formations__date_debut|date('d') ~ ' ' ~ mois_fr ~ ' ' ~ formation.formations__date_debut|date('Y') }}
  34.                 <br>
  35.                 au
  36.                 {{ formation.formations__date_fin|date('d') ~ ' ' ~ mois_fin_fr ~ ' ' ~ formation.formations__date_fin|date('Y') }}
  37.             {% endif %}
  38.         {% endif %}
  39.     </div>
  40.     {% if formation.formations__lieu_adresse or formation.formations__lieu_cp or formation.formations__lieu_ville %}
  41.         <div class="info">
  42.             <i class="fa-solid fa-fw fa-location-dot"></i> 
  43.             {{formation.formations__lieu_adresse|raw}}, <br> 
  44.             {{ formation.formations__lieu_cp|raw }}
  45.             {{formation.formations__lieu_ville|raw}} 
  46.         </div>
  47.     {% endif %}
  48.     <div class="info">Temps de formation total :
  49.         {% set total_heures_participants = formation.formations__total_heures_participants | replace({',': '', '.000': ''}) %}
  50.         {{ total_heures_participants | number_format(0, '.', '') }}h
  51.     </div>
  52.     <div class="mt-3">
  53.         {% if formation.formations__tarif %}
  54.             <h3 class="mb-2">Tarif : {{formation.formations__tarif|raw}} € (HT)</h3>
  55.             Possibilité de financement jusqu'à 100%
  56.         {% endif %}
  57.     </div>
  58.     <div class="links">
  59.         <div class="d-flex flex-wrap gap-2 mt-2 mb-3">
  60.             {% if formation.formations__contact_mail %}
  61.                 <a href="mailto:{{ formation.formations__contact_mail|raw }}?subject={{ formation.formations__intitule_for_email|raw }}" onclick="return gtagSendEvent('mailto:{{ formation.formations__contact_mail|raw }}?subject={{ formation.formations__intitule_for_email|raw }}')">
  62.                     <div class="bouton action full">
  63.                         Écrivez-nous
  64.                     </div>
  65.                 </a>
  66.             {% else %}
  67.                 <a href="mailto:formation@illusion-macadam.fr?subject={{ formation.formations__intitule_for_email|raw }}" onclick="return gtagSendEvent('mailto:formation@illusion-macadam.fr?subject={{ formation.formations__intitule_for_email|raw }}')">
  68.                     <div class="bouton action full">
  69.                         Écrivez-nous
  70.                     </div>
  71.                 </a>
  72.             {% endif %}
  73.             {% if formation.formations__devis_url %}
  74.                 <br class="d-none d-lg-block">
  75.                 <a href="{{formation.formations__devis_url}}" target="_blank">
  76.                     <div class="bouton action full">
  77.                         Devis
  78.                     </div>
  79.                 </a>
  80.             {% elseif pdf_devis %}
  81.                 {% for devis in pdf_devis %}
  82.                     <br class="d-none d-lg-block">
  83.                     <a href="{{devis.url}}" target="_blank">
  84.                         <div class="bouton action full">
  85.                             Devis
  86.                         </div>
  87.                     </a>
  88.                 {% endfor %}
  89.                 {% else %}
  90.             {% endif %}
  91.             {% if formation.formations__candidature_url %}
  92.                 <a href="{{formation.formations__candidature_url}}" target="_blank">
  93.                     <div class="bouton action">
  94.                         Dossier de candidature
  95.                     </div>
  96.                 </a>
  97.             {% elseif pdf_candidature %}
  98.                 {% for candidature in pdf_candidature %}
  99.                     <a href="{{candidature.url}}" target="_blank">
  100.                         <div class="bouton action">
  101.                             Dossier de candidature
  102.                         </div>
  103.                     </a>
  104.                 {% endfor %}
  105.                 {% else %}
  106.             {% endif %}
  107.             {% if formation.formations__financement_url %}
  108.                 <a href="{{formation.formations__financement_url}}" target="_blank">
  109.                     <div class="bouton action">
  110.                         Information sur le financement
  111.                     </div>
  112.                 </a>
  113.                 
  114.             {% elseif pdf_financement %}
  115.                 {% for financement in pdf_financement %}
  116.                     <a href="{{financement.url}}" target="_blank">
  117.                         <div class="bouton action">Information sur le financement</div>
  118.                      </a>
  119.                 {% endfor %} 
  120.             {% endif %}
  121.             {% if formation.formations__co_design_url %}
  122.                 <a href="{{formation.formations__co_design_url}}" target="_blank">
  123.                     <div class="bouton action">
  124.                         Site du partenaire
  125.                     </div>
  126.                 </a>
  127.             {% endif %}
  128.         </div>
  129.         <div class="info d-flex mt-2">
  130.              {% if formation.formations__contact_tel %}
  131.                 <a href="tel:{{formation.formations__contact_tel}}" onclick="return gtagSendEvent('tel:0467842989')">
  132.                     <svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="rgba(17, 111, 56, 1)" viewbox="0 0 512 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M511.2 387l-23.25 100.8c-3.266 14.25-15.79 24.22-30.46 24.22C205.2 512 0 306.8 0 54.5c0-14.66 9.969-27.2 24.22-30.45l100.8-23.25C139.7-2.602 154.7 5.018 160.8 18.92l46.52 108.5c5.438 12.78 1.77 27.67-8.98 36.45L144.5 207.1c33.98 69.22 90.26 125.5 159.5 159.5l44.08-53.8c8.688-10.78 23.69-14.51 36.47-8.975l108.5 46.51C506.1 357.2 514.6 372.4 511.2 387z"/></svg>
  133.                     <span class="ms-2">{{formation.formations__contact_tel}}</span>
  134.                 </a>
  135.             {% else %}
  136.                 <a href="tel:04 67 84 29 89" onclick="return gtagSendEvent('tel:0467842989')">
  137.                     <svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" fill="rgba(17, 111, 56, 1)" viewbox="0 0 512 512"><!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --><path d="M511.2 387l-23.25 100.8c-3.266 14.25-15.79 24.22-30.46 24.22C205.2 512 0 306.8 0 54.5c0-14.66 9.969-27.2 24.22-30.45l100.8-23.25C139.7-2.602 154.7 5.018 160.8 18.92l46.52 108.5c5.438 12.78 1.77 27.67-8.98 36.45L144.5 207.1c33.98 69.22 90.26 125.5 159.5 159.5l44.08-53.8c8.688-10.78 23.69-14.51 36.47-8.975l108.5 46.51C506.1 357.2 514.6 372.4 511.2 387z"/></svg>
  138.                     <span class="ms-2">04 67 84 29 89</span>
  139.                 </a>
  140.             {% endif %}
  141.         </div>
  142.     </div>
  143. </div>
  144.