templates/fronts/details_chercheur.html.twig line 1

  1. {% extends 'base_front.html.twig' %}
  2. {% block title %}{{ chercheur.nom }} {{ chercheur.prenom }}{% endblock %}
  3. {% block body %}
  4. <section id="researcher-profile" class="profile-section">
  5.     <!-- Header Section -->
  6.     <div class="profile-header">
  7.         <div class="container">
  8.             <div class="row align-items-center">
  9.                 <!-- Content Column -->
  10.                 <div class="col-lg-8">
  11.                     <h1 class="chercheur-name">{{ chercheur.nom }} {{ chercheur.prenom }}</h1>
  12.                     <div class="chercheur-meta">
  13.                         {% if chercheur.grade %}
  14.                         <span class="research-focus">
  15.                             <i class="fas fa-user-tie"></i> {{ chercheur.grade }}
  16.                         </span>
  17.                         {% endif %}
  18.                         {% if chercheur.specialite %}
  19.                         <span class="research-focus">
  20.                             <i class="fas fa-microscope"></i> {{ chercheur.specialite }}
  21.                         </span>
  22.                         {% endif %}
  23.                         <span class="institution">
  24.                             <i class="fas fa-university"></i> {{ chercheur.etablissement.nomLong }}
  25.                         </span>
  26.                         <span class="research-focus">
  27.                             <i class="fas fa-seedling"></i> {{ chercheur.structure.nomLong }}
  28.                         </span>
  29.                     </div>
  30.                 </div>
  31.                 
  32.                 <!-- Image Column -->
  33.                 <div class="col-lg-4 text-center">
  34.                     <div class="profile-image-container">
  35.                         {% if chercheur.photo is not null %}
  36.                             <img src="/upload/chercheurs/{{ chercheur.photo }}" alt="Photo de {{ chercheur.nom }} {{ chercheur.prenom }}" class="profile-image">
  37.                         {% else %}
  38.                             <img src="/front/icons/utilisateur.png" alt="Photo de {{ chercheur.nom }} {{ chercheur.prenom }}" class="profile-image">
  39.                         {% endif %}
  40.                         
  41.                     </div>
  42.                 </div>
  43.             </div>
  44.         </div>
  45.     </div>
  46.     <!-- Main Content -->
  47.     <div class="container profile-content mt-3">
  48.         <div class="row">
  49.             <!-- Left Column - Research Info -->
  50.             <div class="col-lg-8">
  51.                  <!-- Patents Section -->
  52.                 <div class="profile-card">
  53.                     <h2 class="section-chercheur-title">
  54.                         <i class="fas fa-user-tie"></i> Biography
  55.                     </h2>
  56.                     <div class="section-content">
  57.                         <!-- Content would go here -->
  58.                         {% if chercheur.biography %}
  59.                             {{ chercheur.biography|raw }}
  60.                         {% else %}
  61.                             <p class="empty-message">Aucun biography enregistré actuellement</p>
  62.                         {% endif %}
  63.                     </div>
  64.                 </div>
  65.                 <!-- Patents Section -->
  66.                 <div class="profile-card">
  67.                     <h2 class="section-chercheur-title">
  68.                         <i class="fas fa-certificate"></i> Brevets nationaux et internationaux
  69.                     </h2>
  70.                     <div class="section-content">
  71.                         <!-- Content would go here -->
  72.                         {% if chercheur.brevetNationauxInternationaux %}
  73.                             {{ chercheur.brevetNationauxInternationaux|raw }}
  74.                         {% else %}
  75.                             <p class="empty-message">Aucun brevet enregistré actuellement</p>
  76.                         {% endif %}
  77.                     </div>
  78.                 </div>
  79.                 <!-- Projects Section -->
  80.                 <div class="profile-card">
  81.                     <h2 class="section-chercheur-title">
  82.                         <i class="fas fa-project-diagram"></i> Projets nationaux et internationaux
  83.                     </h2>
  84.                     <div class="section-content">
  85.                         <!-- Content would go here -->
  86.                         {% if chercheur.projetNationauxIternationaux %}
  87.                             {{ chercheur.projetNationauxIternationaux|raw }}
  88.                         {% else %}
  89.                           <p class="empty-message">Aucun projet enregistré actuellement</p>
  90.                         {% endif %}
  91.                        
  92.                     </div>
  93.                 </div>
  94.                 <!-- Education Section -->
  95.                 <div class="profile-card">
  96.                     <h2 class="section-chercheur-title">
  97.                         <i class="fas fa-graduation-cap"></i> Éducation
  98.                     </h2>
  99.                     <div class="section-content">
  100.                         <div class="education-item">
  101.                             <h3 class="education-title">Masters de Recherche</h3>
  102.                             {{ chercheur.masteresRecherches|raw }}
  103.                         </div>
  104.                         <div class="education-item">
  105.                             <h3 class="education-title">Thèses de Doctorat</h3>
  106.                             {{ chercheur.thesesDoctorat|raw }}
  107.                         </div>
  108.                     </div>
  109.                 </div>
  110.             </div>
  111.             
  112.             <!-- Right Column - Contact Info -->
  113.             <div class="col-lg-4">
  114.                 <div class="contact-card">
  115.                     <h2 class="section-chercheur-title">
  116.                         <i class="fas fa-envelope"></i> Contact
  117.                     </h2>
  118.                     <ul class="contact-list">
  119.                         <li>
  120.                             <a href="mailto:{{ chercheur.email }}" class="contact-link">
  121.                                 <i class="fas fa-envelope"></i> {{ chercheur.email }}
  122.                             </a>
  123.                         </li>
  124.                         <li>
  125.                             <a href="{{ chercheur.linkedin }}" target="_blank" class="contact-link">
  126.                                 <i class="fab fa-linkedin"></i> LinkedIn
  127.                             </a>
  128.                         </li>
  129.                         <li>
  130.                             <a href="{{ chercheur.PGoogle }}" target="_blank" class="contact-link">
  131.                                 <i class="fas fa-graduation-cap"></i> Google Scholar
  132.                             </a>
  133.                         </li>
  134.                         <li>
  135.                             <a href="{{ chercheur.PScopus }}" target="_blank" class="contact-link">
  136.                                 <i class="fas fa-book"></i> Scopus
  137.                             </a>
  138.                         </li>
  139.                         <li>
  140.                             <a href="{{ chercheur.PWebScience }}" target="_blank" class="contact-link">
  141.                                 <i class="fas fa-globe"></i> Web of Science
  142.                             </a>
  143.                         </li>
  144.                         <li>
  145.                             <a href="{{ chercheur.resarchgate }}" target="_blank" class="contact-link">
  146.                                 <i class="fas fa-users"></i> ResearchGate
  147.                             </a>
  148.                         </li>
  149.                     </ul>
  150.                 </div>
  151.             </div>
  152.         </div>
  153.     </div>
  154. </section>
  155. {% endblock %}