+<div class="contenu-wrapper">
+ <div id="fiche_chercheur">
+ <p>{{chercheur.personne.courriel}}</p>
+
+ <h5>Information générales</h5>
+ <table>
+ <tr>
+ <td class="label">Nationalité:</td>
+ <td>{{chercheur.nationalite.nom}}</td>
+ </tr>
+ <tr>
+ <td class="label">Fonction:</td>
+ <td>{{chercheur.fonction}}</td>
+ </tr>
+ <tr>
+ <td class="label">Diplôme:</td>
+ <td>{{chercheur.diplome}}</td>
+ </tr>
+ </table>
+
+ <h5>Établissement de rattachement</h5>
+ <table>
+ <tr>
+ <td class="label">Localisation:</td>
+ <td>{% firstof chercheur.etablissement.pays chercheur.etablissement_autre_pays "-" %}</td>
+ </tr>
+ <tr>
+ <td class="label">Établissement:</td>
+ <td>{% firstof chercheur.etablissement.nom chercheur.etablissement_autre_nom "-" %}</td>
+ </tr>
+ </table>
+
+ <h5>Thèmes de recherche et publications</h5>
+ <table id="publications">
+ <tr>
+ <td class="label">Thèmes de recherche et domaine d'expertise:</td>
+ <td>{{chercheur.expertise}}</td>
+ </tr>
+ <tr>
+ <td class="label">Thèse:</td>
+ <td>{{chercheur.these.publication_affichage}}</td>
+ </tr>
+ <tr>
+ <td class="label">Publication 1:</td>
+ <td>
+ {% with chercheur.publication1 as publication %}{% include "chercheurs/publication_display.html" %}{% endwith %}
+ </td>
+ </tr>
+ <tr>
+ <td class="label">Publication 2:</td>
+ <td>{{chercheur.publication2.publication_affichage}}</td>
+ </tr>
+ <tr>
+ <td class="label">Publication 3:</td>
+ <td>{{chercheur.publication3.publication_affichage}}</td>
+ </tr>
+ <tr>
+ <td class="label">Publication 4:</td>
+ <td>{{chercheur.publication4.publication_affichage}}</td>
+ </tr>
+ </table>
+
+ <h5>Domaines de recherche</h5>
+ <table>
+ <tr>
+ <td class="label">Adhésion(s) active(s):</td>
+ <td>
+ <ul>
+ {% for g in chercheur.chercheurgroupe_set.all %}
+ <li>{{g.groupe.nom}}</li>
+ {% endfor %}
+ </ul>
+ </td>
+ </tr>
+ </table>
+
+ <h5>Site web personnel</h5>
+ <table>
+ <tr>
+ <td class="label">Url site web:</td>
+ <td>{% firstof chercheur.url_site_web "" %}</td>
+ </tr>
+ <tr>
+ <td class="label">Blog:</td>
+ <td>{% firstof chercheur.url_blog "" %}</td>
+ </tr>
+ <tr>
+ <td class="label">Facebook:</td>
+ <td>{% firstof chercheur.url_facebook "" %}</td>
+ </tr>
+ <tr>
+ <td class="label">Linkedin:</td>
+ <td>{% firstof chercheur.url_linkedin "" %}</td>
+ </tr>
+ </table>
+ </div>
+
+</div>