1 <h1>{{ chercheur.civilite }} {{ chercheur.prenom }} {{ chercheur.nom|upper }}
</h1>
3 <div id=
"fiche_chercheur">
5 <div>{{ chercheur.etablissement_display }}
</div>
6 {% if chercheur.afficher_courriel %}
7 <div>{{ chercheur.courriel_display }}
</div>
9 <div><span class=
"label">Région:
</span>{{ chercheur.region.nom }}
</div>
11 <h2>Informations académiques
</h2>
14 <td class=
"label">Statut:
</td>
15 <td>{{ chercheur.statut_display }}
</td>
18 <td class=
"label">Diplôme:
</td>
19 <td>{{ chercheur.diplome }}
</td>
22 <td class=
"label">Domaine{{ chercheur.domaines_recherche.all|pluralize }} de recherche:
</td>
25 {% for dr in chercheur.domaines_recherche.all %}
32 <td class=
"label">Communauté{{ chercheur.groupes_chercheur.all|pluralize }} de chercheurs:
</td>
35 {% for gc in chercheur.groupes_chercheur.all %}
41 {% if chercheur.these %}
44 <div class=
"label">Thèse:
</div>
45 (ou tout autre travail de recherche
— mémoire, HDR, etc.
— encadré par un universitaire)
48 {% if chercheur.these.url %}
49 <i><a href=
"{{ chercheur.these.url }}">{{ chercheur.these.titre }}
</a></i>,
51 <i>{{ chercheur.these.titre }}
</i>,
53 {{ chercheur.these.etablissement }},
54 {{ chercheur.these.annee }}{% if chercheur.these.nb_pages %},
55 {{ chercheur.these.nb_pages }} pages{% endif %}.
59 <td class=
"label">Directeur:
</td>
60 <td>{{ chercheur.these.directeur }}
</td>
65 <h2>Discipline, thèmes de recherche
</h2>
67 {% if chercheur.discipline %}
69 <td class=
"label">Discipline:
</td>
70 <td>{{ chercheur.discipline }}
</td>
73 {% if chercheur.theme_recherche %}
75 <td class=
"label">Thèmes de recherche:
</td>
76 <td>{{ chercheur.theme_recherche }}
</td>
79 {% if chercheur.equipe_recherche %}
81 <td class=
"label">Équipe de recherche:
</td>
82 <td>{{ chercheur.equipe_recherche }}
</td>
85 {% if chercheur.mots_cles %}
87 <td class=
"label">Mots-clés:
</td>
88 <td>{{ chercheur.mots_cles }}
</td>
91 {% if chercheur.url_site_web %}
93 <td class=
"label">Url site web:
</td>
94 <td><a href=
"{{ chercheur.url_site_web }}">{{ chercheur.url_site_web }}
</a></td>
97 {% if chercheur.url_blog %}
99 <td class=
"label">Blog:
</td>
100 <td><a href=
"{{ chercheur.url_blog }}">{{ chercheur.url_blog }}
</a></td>
103 {% if chercheur.url_reseau_social %}
105 <td class=
"label">Réseau social:
</td>
106 <td><a href=
"{{ chercheur.url_reseau_social }}">{{ chercheur.url_reseau_social }}
</a></td>
111 {% if chercheur.membre_instance_auf or chercheur.expert_oif or chercheur.membre_association_francophone or chercheur.membre_reseau_institutionnel %}
112 <h2>Activités en Francophonie
</h2>
114 {% if chercheur.membre_instance_auf %}
116 <td class=
"label">Membre d'une instance de l'AUF
</td>
118 {{ chercheur.get_membre_instance_auf_nom_display }},
119 {{ chercheur.membre_instance_auf_fonction }},
120 {{ chercheur.membre_instance_auf_dates }}
124 {% if chercheur.expert_oif %}
126 <td class=
"label">A déjà été sollicité par l'OIF
</td>
127 <td>{{ chercheur.expert_oif_details }}, {{ chercheur.expert_oif_dates }}
</td>
130 {% if chercheur.membre_association_francophone %}
132 <td class=
"label">Membre d'une association ou d'une société savante francophone
</td>
133 <td>{{ chercheur.membre_association_francophone_details }}
</td>
136 {% if chercheur.membre_reseau_institutionnel %}
138 <td class=
"label">Membre d'instances d'un réseau institutionnel de l'AUF
</td>
140 {{ chercheur.get_membre_reseau_institutionnel_nom_display }},
141 {{ chercheur.membre_reseau_institutionnel_fonction }},
142 {{ chercheur.membre_reseau_institutionnel_dates }}
149 {% if chercheur.expertises.count %}
151 {% for expertise in chercheur.expertises.all %}
154 <td class=
"label">Titre de l'expertise:
</td>
155 <td>{{ expertise.nom }}
</td>
157 {% if expertise.date %}
159 <td class=
"label">Date:
</td>
160 <td>{{ expertise.date }}
</td>
163 {% if expertise.organisme_demandeur and expertise.organisme_demandeur_visible %}
165 <td class=
"label">Organisme demandeur:
</td>
166 <td>{{ expertise.organisme_demandeur }}
</td>
174 <td class=
"label">Est disposé à réaliser des expertises pour l'AUF
</td>
175 <td>{{ chercheur.expertises_auf|yesno:
"Oui,Non" }}
</td>
180 {% if chercheur.publications.count %}
181 <h2>Publications
</h2>
182 <ul class=
"publications">
183 {% for publication in chercheur.publications.all %}
184 {% if publication.titre %}
186 <p> {% if publication.auteurs %}{{ publication.auteurs }},{% endif %}
187 <i>{{publication.titre}}
</i>{% if publication.revue %},
188 {{publication.revue}}{% endif %}{% if publication.annee %},
189 {{publication.annee}}{% endif %}{% if publication.editeur %},
190 {{publication.editeur}}{% endif %}{% if publication.lieu_edition %},
191 {{publication.lieu_edition}}{% endif %}{% if publication.nb_pages %},
192 {{publication.nb_pages}} pages{% endif %}.
193 {% if publication.url %}
194 <br /><a href=
"{{ publication.url }}">{{ publication.url }}
</a>
199 {% if publication.publication_affichage %}
200 <li><p>{{publication.publication_affichage}}
</p></li>