templates/pages/job/job_single.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Offre d'emploi : {{ data[0].specialite ?? 'Poste disponible' }}{% endblock %}
  3. {% block description %}
  4. Offre d'emploi pour {{ data[0].specialite ?? 'un poste' }} à {{ data[0].departement ?? 'un département' }}. 
  5. Postulez dès maintenant chez Réseau Médical Service.
  6. {% endblock %}
  7. {% block body %}
  8.     {% include ("pages/job/header.html.twig") %}
  9.     <script type="application/ld+json">
  10.     {
  11.       "@type" : "JobPosting",
  12.       "title" : "{{ data[0]["specialite"] }}",
  13.       
  14.       "description" : "{{ data[0]['infoPratique'] | escape  }} ",
  15.       
  16.       "datePosted" : "{{ data[0]["createAt"]['date'] | date('d-m-Y') }}",
  17.       "hiringOrganization" : {
  18.         "@type" : "Organization",
  19.         "name" : "Réseau Médical Service",
  20.         "sameAs" : "https://reseaumedical.fr/",
  21.         "logo" : "http://img.mailinblue.com/2078301/images/rnb/original/5c20a51c5fb5f9000e5a5a1d.jpg"
  22.       },
  23.       "jobLocation": {
  24.         "@type": "Place",
  25.         "address": {
  26.         "@type": "PostalAddress",
  27.         "streetAddress": "{{ data[0]["departement"] }}",
  28.         "addressRegion": "{{ data[0]["departement"] }}",
  29.         "postalCode": "{{ data[0]["numeroDepartement"] }}",
  30.         "addressCountry": "FR"
  31.         }
  32.       }
  33.     }
  34.     </script>
  35.     <section class="ftco-section ftco-degree-bg" style="color : black ">
  36.         <div class="container">
  37.             <div class="row">
  38.                 <div class="col-md-7 ftco-animate">
  39.                     <span class="subadge">Intérim</span>
  40.                     <h1>{{ data[0]["specialite"] }}</h1>
  41.                     <div class="tagcloud mb-3">
  42.                         <a href="#" class="tag-cloud-link">
  43.                             <span class="icon-my_location"></span>&ensp; {{ data[0]["departement"] }} {{ data[0]["numeroDepartement"] }}
  44.                         </a>
  45.                         <a href="#" class="tag-cloud-link">{{ data| length }} Date(s)</a>
  46.                         <a href="#" class="tag-cloud-link">
  47.                             <span class="icon-date_range"></span>
  48.                             Publié {{ data[0]["createAt"]['date'] | date('d-m-Y') }}
  49.                         </a>
  50.                     </div>{{ data[0]["infoPratique"] | escape  }}
  51.                 </div> <!-- .col-md-8 -->
  52.                 <div class="col-md-5 pl-md-5 sidebar ftco-animate">
  53.                     <div class="sidebar-box ftco-animate">
  54.                         <div class="categories" data-spy="scroll" data-offset="0">
  55.                             <h3 class="heading-3">Date à Pourvoir </h3>
  56.                             {% for period  in periods %}
  57.                                 {% if (period|length) == 1 %}
  58.                                     <li style="font-size: 14px"><a href="#">{{ period[0]["jour"] | date('d-m-Y') }}
  59.                                             <span>{{ period[0]["designation"] }}</span></a></li>
  60.                                 {% else %}
  61.                                     <li style="font-size: 14px"><a href="#">Du {{ period[0]["jour"] | date('d-m-Y') }}
  62.                                             au {{ period[(period|length)-1]["jour"] | date('d-m-Y') }}
  63.                                             <span>{{ period[0]["designation"] }}</span></a></li>
  64.                                 {% endif %}
  65.                             {% endfor %}
  66.                         </div>
  67.                     </div>
  68.                     <div class="row">
  69.                         <div class="col-6">
  70.                             <button class="btn btn-secondary" data-toggle="modal" data-target="#modalMaintenance"
  71.                                     style="font-size: 14px">Postuler avec Myrms
  72.                             </button>
  73.                         </div>
  74.                         <div class="col-6">
  75.                             <button class="btn btn-primary py-2" data-toggle="modal" data-target="#modalCandidatureCV"
  76.                                     style="font-size: 14px">Postuler avec votre Cv
  77.                             </button>
  78.                         </div>
  79.                     </div>
  80.                     <div class="sidebar-box ftco-animate">
  81.                         <h3 class="heading-3">Partager</h3>
  82.                         <ul class="ftco-footer-social list-unstyled float-md-left float-lft mt-3">
  83.                             <li class="ftco-animate"><a
  84.                                         href="https://twitter.com/intent/tweet?url={{ url('app_job_single', {'refererence':data[0]['reference'] }) }}&text=Regardez cette offre de Réseau Médical Services!"
  85.                                         target="_blank"><span class="icon-twitter"></span></a></li>
  86.                             <li class="ftco-animate"><a
  87.                                         href="https://www.linkedin.com/shareArticle?mini=true&url={{ url('app_job_single', {'refererence':data[0]['reference'] }) }}"
  88.                                         target="_blank"><span class="icon-linkedin"></span></a></li>
  89.                             <li class="ftco-animate"><a
  90.                                         href="https://www.facebook.com/sharer/sharer.php?u={{ url('app_job_single', {'refererence':data[0]['reference'] }) }}"
  91.                                         target="_blank"><span class="icon-facebook"></span></a></li>
  92.                         </ul>
  93.                     </div>
  94.                 </div>
  95.             </div>
  96.         </div>
  97.     </section> <!-- .section -->
  98.     <!-- Modal candidature cv -->
  99.     <div class="modal fade" id="modalCandidatureCV" tabindex="-1" role="dialog" aria-labelledby="modalCandidatureCV"
  100.          aria-hidden="true">
  101.         <div class="modal-dialog modal-dialog-centered" role="document">
  102.             <div class="modal-content">
  103.                 <div class="modal-header">
  104.                     <h5 class="modal-title" id="modalCandidatureCV">Postuler pour cette Offre</h5>
  105.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  106.                         <span aria-hidden="true">&times;</span>
  107.                     </button>
  108.                 </div>
  109.                 <div class="modal-body">
  110.                     <div class="container-fluid">
  111.                         {% include ('pages/candidature/candidature_cv.html.twig') %}
  112.                     </div>
  113.                 </div>
  114.                 <div class="modal-footer">
  115.                     {#          <button type="button" class="btn btn-secondary">Candidature avec Myrms</button>#}
  116.                     {#          <a href="{{ path('app_candidature_cv',{reference:data[0]['reference']}) }}" type="button" class="btn btn-primary">Candidature avec Cv</a>#}
  117.                 </div>
  118.             </div>
  119.         </div>
  120.     </div>
  121.         <div class="modal fade" id="modalMaintenance" tabindex="-1" role="dialog" aria-labelledby="modalMaintenance"
  122.          aria-hidden="true">
  123.         <div class="modal-dialog modal-dialog-centered" role="document">
  124.             <div class="modal-content">
  125.                 <div class="modal-header">
  126.                     <h5 class="modal-title" id="modalMaintenance">Postuler pour cette Offre</h5>
  127.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  128.                         <span aria-hidden="true">&times;</span>
  129.                     </button>
  130.                 </div>
  131.                 <div class="modal-body">
  132.                     <div class="container-fluid">
  133.                        <h2>Espace MyRMS en Maintenance</h2>
  134.                         <h5>Nous sommes désolés, veillez postuler directement avec votre CV.</h5>
  135.                     </div>
  136.                 </div>
  137.                 <div class="modal-footer">
  138.                     {#          <button type="button" class="btn btn-secondary">Candidature avec Myrms</button>#}
  139.                     {#          <a href="{{ path('app_candidature_cv',{reference:data[0]['reference']}) }}" type="button" class="btn btn-primary">Candidature avec Cv</a>#}
  140.                 </div>
  141.             </div>
  142.         </div>
  143.     </div>
  144.     <!-- Modal candidature MyRMS -->
  145.      <div class="modal fade" id="modalCandidatureMyRMS" tabindex="-1" role="dialog"
  146.          aria-labelledby="modalCandidatureMyRMS" aria-hidden="true">
  147.         <div class="modal-dialog modal-dialog-centered modal-lg" role="document">
  148.             <div class="modal-content">
  149.                 <div class="modal-header">
  150.                     <h5 class="modal-title" id="modalCandidatureMyRMS">Postuler pour cette Offre</h5>
  151.                     <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  152.                         <span aria-hidden="true">&times;</span>
  153.                     </button>
  154.                 </div>
  155.                 <div class="modal-body">
  156.                     <div class="container-fluid">
  157.                     <div id = "candidatureMyRMS">
  158.                         <h2>Espace MyRMS en Maintenance</h2>
  159.                         <h5>Nous sommes désolés, veillez postuler directement avec votre CV.</h5>
  160.                 {#<div id="checkbox-container"></div>
  161.                 <div class="pagination">
  162.                 <button id="prev-btn" disabled>Précédent</button>
  163.                 <span id="page-counter">Page 1</span>
  164.                 <button id="next-btn">Suivant</button>
  165.                 </div>
  166.                 <div id="data-container" data-data="{{ data|json_encode }}"></div>
  167.                 <script>
  168.                      var dataFromServer = JSON.parse(document.getElementById("data-container").getAttribute("data-data"));
  169.                     var taille_data = dataFromServer.length;
  170.                     var n_page =  Math.floor(taille_data / 12) + 1;
  171.                     const checkboxContainer = document.getElementById("checkbox-container");
  172.                     const prevButton = document.getElementById("prev-btn");
  173.                     const nextButton = document.getElementById("next-btn");
  174.                     const pageCounter = document.getElementById("page-counter");
  175.  
  176.                     const totalPages = n_page ; // le nombre total de pages
  177.                     let currentPage = 1;
  178.                     function formatDateFromString(dateString) {
  179.                         const parts = dateString.split(' ');
  180.                         const datePart = parts[0];
  181.                         const timePart = parts[1];
  182.   
  183.                         const dateComponents = datePart.split('-');
  184.                         const year = parseInt(dateComponents[0]);
  185.                         const month = parseInt(dateComponents[1]) - 1; 
  186.                         const day = parseInt(dateComponents[2]);
  187.                         const timeComponents = timePart.split(':');
  188.                         const hour = parseInt(timeComponents[0]);
  189.                         const minute = parseInt(timeComponents[1]);
  190.                         const second = parseInt(timeComponents[2]);
  191.   
  192.                         return new Date(year, month, day, hour, minute, second);
  193.                     }
  194.                     function formatDate(date) {
  195.                         const day = String(date.getDate()).padStart(2, '0');
  196.                         const month = String(date.getMonth() + 1).padStart(2, '0');
  197.                         const year = date.getFullYear();
  198.   
  199.                         return `${day}-${month}-${year}`;
  200.                     }
  201.  
  202.                     function updatePaginationButtons() {
  203.                         prevButton.disabled = currentPage === 1;
  204.                         nextButton.disabled = currentPage === totalPages;
  205.                         pageCounter.textContent = `Page ${currentPage}`;
  206.                     }
  207.  
  208.                     function createCheckboxes(page) {
  209.                         checkboxContainer.innerHTML = "";
  210.                     
  211.                         const startIndex = (page - 1) * 12;
  212.                         const endIndex = Math.min(taille_data, startIndex + 12, totalPages * 12);
  213.             
  214.                         const table = document.createElement("table");
  215.                         table.classList.add("table-paginated");
  216.                         
  217.                         const row1 = document.createElement("tr");
  218.                         const titre1 = document.createElement("th");
  219.                         const titre2 = document.createElement("th");
  220.                         const titre3 = document.createElement("th");
  221.                         const titre4 = document.createElement("th");
  222.                         const titre5 = document.createElement("th");
  223.                         const titre6 = document.createElement("th");
  224.             
  225.                         titre1.textContent = `#`;
  226.                         titre2.textContent = ` `;
  227.                         titre3.textContent = `Date`;
  228.                         titre4.textContent = `Libelle`;
  229.                         titre5.textContent = `Debut`;
  230.                         titre6.textContent = `Fin`;
  231.                         row1.appendChild(titre1);
  232.                         row1.appendChild(titre2);
  233.                         row1.appendChild(titre3);
  234.                         row1.appendChild(titre4);
  235.                         row1.appendChild(titre5);
  236.                         row1.appendChild(titre6);
  237.                         table.appendChild(row1);
  238.                         for (let i = startIndex; i < endIndex; i++) {
  239.                 
  240.                             const row = document.createElement("tr");
  241.                             const content1Cell = document.createElement("td");
  242.                             content1Cell.textContent = i+1;
  243.                 
  244.                             const checkboxCell = document.createElement("td");
  245.                             const checkbox = document.createElement("input");
  246.                             checkbox.type = "checkbox";
  247.                             checkboxCell.appendChild(checkbox);
  248.                             const content2Cell = document.createElement("td");
  249.                             const inputDate = formatDateFromString(dataFromServer[i]["date"]["date"]);
  250.                             const formattedDate = formatDate(inputDate);
  251.                             content2Cell.textContent = formattedDate;
  252.                             const content3Cell = document.createElement("td");
  253.                             content3Cell.textContent = dataFromServer[i]["designation"];
  254.                             const content4Cell = document.createElement("td");
  255.                             content4Cell.textContent = `...`;
  256.                             const content5Cell = document.createElement("td");
  257.                             content5Cell.textContent = `...`;
  258.                 
  259.                 
  260.                             row.appendChild(content1Cell);
  261.                             row.appendChild(checkboxCell);
  262.                             row.appendChild(content2Cell);
  263.                             row.appendChild(content3Cell);
  264.                             row.appendChild(content4Cell);
  265.                             row.appendChild(content5Cell);
  266.             
  267.                             table.appendChild(row);
  268.                         }
  269.         
  270.                     checkboxContainer.appendChild(table);
  271.                     updatePaginationButtons();
  272.                 }
  273.                 prevButton.addEventListener("click", () => {
  274.                         if (currentPage > 1) {
  275.                             currentPage--;
  276.                             createCheckboxes(currentPage);
  277.                         }
  278.                 });
  279.  
  280.                 nextButton.addEventListener("click", () => {
  281.                     if (currentPage < totalPages) {
  282.                         currentPage++;
  283.                         createCheckboxes(currentPage);
  284.                     }
  285.                 });
  286.  
  287.                 // Initialiser la pagination avec la première page
  288.                 createCheckboxes(currentPage);
  289.                 </script>
  290.                         <br>
  291.                         <div class="form-check  mb-4">
  292.                         <input class="form-check-input"  v-model="cgu" required type="checkbox" value="" id="flexCheckDefault" />
  293.                         <label class="form-check-label" for="flexCheckDefault">J'ai lu et j'accepte les Conditions Générales d'Utilisation, notamment la mention relative à la protection des données personnelles.<a href="{{ url('app_r_g_p_d') }}">(CGU)</a></label>
  294.                         </div>
  295.                             <!-- Submit button -->
  296.                             <button type="submit"  class="btn btn-primary btn-block mb-3">Soumettre</button>
  297.                         </form>
  298.                     </div>
  299.                 </div>
  300.                 </div>
  301.                 <div class="modal-footer">#}
  302.                     {#          <button type="button" class="btn btn-secondary">Candidature avec Myrms</button>#}
  303.                     {#          <a href="{{ path('app_candidature_cv',{reference:data[0]['reference']}) }}" type="button" class="btn btn-primary">Candidature avec Cv</a>#}
  304.                 {#</div>#}
  305.             </div>
  306.         </div>
  307.     </div> 
  308.     
  309.     
  310. {% endblock %}