1 {% extends
"container_base.html" %}
6 <h4>{{ chercheur }}
</h4>
8 <div class=
"contenu-wrapper">
9 <div id=
"fiche_chercheur">
10 <p>{{chercheur.personne.courriel}}
</p>
11 <p>{% firstof chercheur.etablissement.nom chercheur.etablissement_autre_nom
"-" %}, {% firstof chercheur.etablissement.pays chercheur.etablissement_autre_pays
"-" %}
</p>
15 <td class=
"label">Nationalité:
</td>
16 <td>{{chercheur.nationalite.nom}}
</td>
19 <td class=
"label">Fonction:
</td>
20 <td>{{chercheur.fonction}}
</td>
23 <td class=
"label">Diplôme:
</td>
24 <td>{{chercheur.diplome}}
</td>
28 {% if chercheur.url_site_web %}
30 <td class=
"label">Url site web:
</td>
31 <td><a href=
"{{chercheur.url_site_web}}">{{chercheur.url_site_web}}
</a></td>
34 {% if chercheur.url_blog %}
36 <td class=
"label">Blog:
</td>
37 <td><a href=
"{{chercheur.url_blog}}">{{chercheur.url_blog}}
</a></td>
40 {% if chercheur.url_facebook %}
42 <td class=
"label">Facebook:
</td>
43 <td><a href=
"{{chercheur.url_facebook}}">{{chercheur.url_facebook}}
</a></td>
46 {% if chercheur.url_linkedin %}
48 <td class=
"label">Linkedin:
</td>
49 <td><a href=
"{{chercheur.url_linkedin}}">{{chercheur.url_linkedin}}
</a></td>
54 <h5>Thèmes de recherche et publications
</h5>
55 <table id=
"publications">
57 <td class=
"label">Thèmes de recherche et domaine d'expertise:
</td>
58 <td>{{chercheur.expertise}}
</td>
60 {% if chercheur.these %}
62 <td class=
"label">Thèse:
</td>
63 {% with chercheur.these as publication %}{% include
"chercheurs/publication_display.html" %}{% endwith %}
67 <td class=
"label">Publications:
</td>
68 {% with chercheur.publication1 as publication %}{% include
"chercheurs/publication_display.html" %}{% endwith %}
71 <td class=
"label"></td>
72 {% with chercheur.publication2 as publication %}{% include
"chercheurs/publication_display.html" %}{% endwith %}
75 <td class=
"label"></td>
76 {% with chercheur.publication3 as publication %}{% include
"chercheurs/publication_display.html" %}{% endwith %}
79 <td class=
"label"></td>
80 {% with chercheur.publication4 as publication %}{% include
"chercheurs/publication_display.html" %}{% endwith %}
84 <h5>Domaines de recherche
</h5>
87 <td class=
"label">Adhésion(s) active(s):
</td>
89 {% for g in chercheur.chercheurgroupe_set.all %}
90 {{g.groupe.nom}}
<br />
96 {% if chercheur.discipline %}
100 <td class=
"label">Discipline:
</td>
101 <td>{{chercheur.discipline}}
</td>