1 <div id=
"fiche_chercheur">
3 <div><a href=
"mailto:{{ chercheur.courriel }}">{{ chercheur.courriel }}
</a></div>
4 <div>{{ chercheur.etablissement_display }}
</div>
5 <div><span class=
"label">Région:
</span>{{ chercheur.region.nom }}
</div>
7 <h2>Informations académiques
</h2>
10 <td class=
"label">Statut:
</td>
11 <td>{{ chercheur.statut_display }}
</td>
14 <td class=
"label">Diplôme:
</td>
15 <td>{{ chercheur.diplome }}
</td>
18 <td class=
"label">Domaine{{ chercheur.groupes.all|pluralize }} de recherche:
</td>
21 {% for g in chercheur.groupes.all %}
27 {% if chercheur.these %}
29 <td class=
"label">Thèse ou mémoire:
</td>
31 {% if chercheur.these.url %}
32 <i><a href=
"{{ chercheur.these.url }}">{{ chercheur.these.titre }}
</a></i>,
34 <i>{{ chercheur.these.titre }}
</i>,
36 {{ chercheur.these.etablissement }},
37 {{ chercheur.these.annee }}{% if chercheur.these.nb_pages %},
38 {{ chercheur.these.nb_pages }} pages{% endif %}.
42 <td class=
"label">Directeur:
</td>
43 <td>{{ chercheur.these.directeur }}
</td>
48 <h2>Discipline, thèmes de recherche
</h2>
50 {% if chercheur.discipline %}
52 <td class=
"label">Discipline:
</td>
53 <td>{{ chercheur.discipline }}
</td>
56 {% if chercheur.theme_recherche %}
58 <td class=
"label">Thèmes de recherche:
</td>
59 <td>{{ chercheur.theme_recherche }}
</td>
62 {% if chercheur.groupe_recherche %}
64 <td class=
"label">Groupe de recherche:
</td>
65 <td>{{ chercheur.groupe_recherche }}
</td>
68 {% if chercheur.mots_cles %}
70 <td class=
"label">Mots-clés:
</td>
71 <td>{{ chercheur.mots_cles }}
</td>
74 {% if chercheur.url_site_web %}
76 <td class=
"label">Url site web:
</td>
77 <td><a href=
"{{ chercheur.url_site_web }}">{{ chercheur.url_site_web }}
</a></td>
80 {% if chercheur.url_blog %}
82 <td class=
"label">Blog:
</td>
83 <td><a href=
"{{ chercheur.url_blog }}">{{ chercheur.url_blog }}
</a></td>
86 {% if chercheur.url_reseau_social %}
88 <td class=
"label">Réseau social:
</td>
89 <td><a href=
"{{ chercheur.url_reseau_social }}">{{ chercheur.url_reseau_social }}
</a></td>
94 {% if chercheur.membre_instance_auf or chercheur.expert_oif or chercheur.membre_association_francophone or chercheur.membre_reseau_institutionnel %}
95 <h2>Activités en Francophonie
</h2>
97 {% if chercheur.membre_instance_auf %}
99 <td class=
"label">Membre d'une instance de l'AUF
</td>
100 <td>{{ chercheur.membre_instance_auf_details }}, {{ chercheur.membre_instance_auf_dates }}
</td>
103 {% if chercheur.expert_oif %}
105 <td class=
"label">A déjà été sollicité par l'OIF
</td>
106 <td>{{ chercheur.expert_oif_details }}, {{ chercheur.expert_oif_dates }}
</td>
109 {% if chercheur.membre_association_francophone %}
111 <td class=
"label">Membre d'une association ou d'une société savante francophone
</td>
112 <td>{{ chercheur.membre_association_francophone_details }}
</td>
115 {% if chercheur.membre_reseau_institutionnel %}
117 <td class=
"label">Membre d'instances d'un réseau institutionnel de l'AUF
</td>
118 <td>{{ chercheur.membre_reseau_institutionnel_details }},
119 {{ chercheur.membre_reseau_institutionnel_dates }}
</td>
126 {% for expertise in chercheur.expertises.all %}
129 <td class=
"label">Titre de l'expertise:
</td>
130 <td>{{ expertise.nom }}
</td>
132 {% if expertise.date %}
134 <td class=
"label">Date:
</td>
135 <td>{{ expertise.date }}
</td>
138 {% if expertise.organisme_demandeur and expertise.organisme_demandeur_visible %}
140 <td class=
"label">Organisme demandeur:
</td>
141 <td>{{ expertise.organisme_demandeur }}
</td>
149 <td class=
"label">Est disposé à réaliser des expertises pour l'AUF
</td>
150 <td>{{ chercheur.expertises_auf|yesno:
"Oui,Non" }}
</td>
154 {% if chercheur.publications %}
155 <h2>Publications
</h2>
156 <ul class=
"publications">
157 {% for publication in chercheur.publications.all %}
158 {% if publication.titre %}
160 <p> {% if publication.auteurs %}{{ publication.auteurs }},{% endif %}
161 <i>{{publication.titre}}
</i>{% if publication.revue %},
162 {{publication.revue}}{% endif %}{% if publication.annee %},
163 {{publication.annee}}{% endif %}{% if publication.editeur %},
164 {{publication.editeur}}{% endif %}{% if publication.lieu_edition %},
165 {{publication.lieu_edition}}{% endif %}{% if publication.nb_pages %},
166 {{publication.nb_pages}} pages{% endif %}.
167 {% if publication.url %}
168 <br /><a href=
"{{ publication.url }}">{{ publication.url }}
</a>
173 {% if publication.publication_affichage %}
174 <li><p>{{publication.publication_affichage}}
</p></li>