1 {% extends
"container_base.html" %}
4 <h4>{{ chercheur }}
</h4>
6 <div class=
"contenu-wrapper">
7 <div id=
"fiche_chercheur">
8 <p>{{chercheur.personne.courriel}}
</p>
10 <h5>Information générales
</h5>
13 <td class=
"label">Nationalité:
</td>
14 <td>{{chercheur.nationalite.nom}}
</td>
17 <td class=
"label">Fonction:
</td>
18 <td>{{chercheur.fonction}}
</td>
21 <td class=
"label">Diplôme:
</td>
22 <td>{{chercheur.diplome}}
</td>
26 <h5>Établissement de rattachement
</h5>
29 <td class=
"label">Localisation:
</td>
30 <td>{% firstof chercheur.etablissement.pays chercheur.etablissement_autre_pays
"-" %}
</td>
33 <td class=
"label">Établissement:
</td>
34 <td>{% firstof chercheur.etablissement.nom chercheur.etablissement_autre_nom
"-" %}
</td>
38 <h5>Thèmes de recherche et publications
</h5>
39 <table id=
"publications">
41 <td class=
"label">Thèmes de recherche et domaine d'expertise:
</td>
42 <td>{{chercheur.expertise}}
</td>
45 <td class=
"label">Thèse:
</td>
46 <td>{{chercheur.these.publication_affichage}}
</td>
49 <td class=
"label">Publication
1:
</td>
51 {% with chercheur.publication1 as publication %}{% include
"chercheurs/publication_display.html" %}{% endwith %}
55 <td class=
"label">Publication
2:
</td>
56 <td>{{chercheur.publication2.publication_affichage}}
</td>
59 <td class=
"label">Publication
3:
</td>
60 <td>{{chercheur.publication3.publication_affichage}}
</td>
63 <td class=
"label">Publication
4:
</td>
64 <td>{{chercheur.publication4.publication_affichage}}
</td>
68 <h5>Domaines de recherche
</h5>
71 <td class=
"label">Adhésion(s) active(s):
</td>
74 {% for g in chercheur.chercheurgroupe_set.all %}
75 <li>{{g.groupe.nom}}
</li>
82 <h5>Site web personnel
</h5>
85 <td class=
"label">Url site web:
</td>
86 <td>{% firstof chercheur.url_site_web
"" %}
</td>
89 <td class=
"label">Blog:
</td>
90 <td>{% firstof chercheur.url_blog
"" %}
</td>
93 <td class=
"label">Facebook:
</td>
94 <td>{% firstof chercheur.url_facebook
"" %}
</td>
97 <td class=
"label">Linkedin:
</td>
98 <td>{% firstof chercheur.url_linkedin
"" %}
</td>