1 {% extends
"container_base.html" %}
6 <span class=
"contenu-wrapper message">Votre fiche a bien été enregistrée.
</span>
11 <h4>{{ chercheur }}
</h4>
13 <div class=
"contenu-wrapper">
14 <div id=
"fiche_chercheur">
15 <p>{{chercheur.personne.courriel}}
</p>
16 {% if chercheur.etablissement.nom or chercheur.etablissement_autre_nom %}
17 <p>{% firstof chercheur.etablissement.nom chercheur.etablissement_autre_nom
"-" %}, {% firstof chercheur.etablissement.pays chercheur.etablissement_autre_pays
"-" %}
</p>
21 {% if chercheur.nationalite %}
23 <td class=
"label">Nationalité:
</td>
24 <td>{{chercheur.nationalite.nom|default:
"-"}}
</td>
28 <td class="label">Fonction:</td>
29 <td>{{chercheur.fonction_display|default:"-"}}</td>
32 <td class=
"label">Diplôme:
</td>
33 <td>{{chercheur.diplome|default:
"-"}}
</td>
37 {% if chercheur.url_site_web %}
39 <td class=
"label">Url site web:
</td>
40 <td><a href=
"{{chercheur.url_site_web}}">{{chercheur.url_site_web}}
</a></td>
43 {% if chercheur.url_blog %}
45 <td class=
"label">Blog:
</td>
46 <td><a href=
"{{chercheur.url_blog}}">{{chercheur.url_blog}}
</a></td>
49 {% if chercheur.url_facebook %}
51 <td class=
"label">Facebook:
</td>
52 <td><a href=
"{{chercheur.url_facebook}}">{{chercheur.url_facebook}}
</a></td>
55 {% if chercheur.url_linkedin %}
57 <td class=
"label">Linkedin:
</td>
58 <td><a href=
"{{chercheur.url_linkedin}}">{{chercheur.url_linkedin}}
</a></td>
63 {% if chercheur.expertise %}
67 <td class=
"label">Titre de l'expertise:
</td>
68 <td>{{chercheur.expertise.nom}}
</td>
70 {% if chercheur.expertise.date %}
72 <td class=
"label">Date:
</td>
73 <td>{{chercheur.expertise.date}}
</td>
76 {% if chercheur.expertise.organisme_demandeur and chercheur.expertise.organisme_demandeur_visible %}
78 <td class=
"label">Organisme demandeur:
</td>
79 <td>{{chercheur.expertise.organisme_demandeur}}
</td>
85 <h5>Thèmes de recherche et publications
</h5>
86 <table id=
"publications">
87 {% if chercheur.theme_recherche %}
89 <td class=
"label">Thèmes de recherche:
</td>
90 <td>{{chercheur.theme_recherche}}
</td>
93 {% if chercheur.these %}
95 <td class=
"label">Thèse:
</td>
96 {% with chercheur.these as publication %}{% include
"chercheurs/publication_display.html" %}{% endwith %}
100 <td class=
"label">Publications:
</td>
101 {% with chercheur.publication1 as publication %}{% include
"chercheurs/publication_display.html" %}{% endwith %}
104 <td class=
"label"></td>
105 {% with chercheur.publication2 as publication %}{% include
"chercheurs/publication_display.html" %}{% endwith %}
108 <td class=
"label"></td>
109 {% with chercheur.publication3 as publication %}{% include
"chercheurs/publication_display.html" %}{% endwith %}
112 <td class=
"label"></td>
113 {% with chercheur.publication4 as publication %}{% include
"chercheurs/publication_display.html" %}{% endwith %}
117 <h5>Domaines de recherche
</h5>
120 <td class=
"label">Adhésion(s) active(s):
</td>
122 {% for g in chercheur.chercheurgroupe_set.all %}
123 {{g.groupe.nom}}
<br />
129 {% if chercheur.discipline %}
133 <td class=
"label">Discipline:
</td>
134 <td>{{chercheur.discipline}}
</td>