Commit | Line | Data |
---|---|---|
705013cb EMS |
1 | <h1>{{ chercheur.civilite }} {{ chercheur.prenom }} {{ chercheur.nom|upper }}</h1> |
2 | ||
e4d01d1d EMS |
3 | <div id="fiche_chercheur"> |
4 | ||
e4d01d1d | 5 | <div>{{ chercheur.etablissement_display }}</div> |
165da916 | 6 | {% if chercheur.afficher_courriel %} |
3a3d9c6f | 7 | <div>{{ chercheur.courriel_display }}</div> |
165da916 | 8 | {% endif %} |
d32102bd | 9 | <div><span class="label">Région: </span>{{ chercheur.region.nom }}</div> |
e4d01d1d | 10 | |
cf4091c8 | 11 | <h2>Informations académiques</h2> |
e4d01d1d EMS |
12 | <table> |
13 | <tr> | |
14 | <td class="label">Statut:</td> | |
15 | <td>{{ chercheur.statut_display }}</td> | |
16 | </tr> | |
17 | <tr> | |
18 | <td class="label">Diplôme:</td> | |
19 | <td>{{ chercheur.diplome }}</td> | |
20 | </tr> | |
21 | <tr> | |
5b55252d | 22 | <td class="label">Domaine{{ chercheur.domaines_recherche.all|pluralize }} de recherche:</td> |
e4d01d1d EMS |
23 | <td> |
24 | <ul> | |
5b55252d PP |
25 | {% for dr in chercheur.domaines_recherche.all %} |
26 | <li>{{ dr.nom }}</li> | |
27 | {% endfor %} | |
28 | </ul> | |
29 | </td> | |
30 | </tr> | |
31 | <tr> | |
8f7c4c58 | 32 | <td class="label">Groupe{{ chercheur.groupes_chercheur.all|pluralize }} de chercheurs:</td> |
5b55252d PP |
33 | <td> |
34 | <ul> | |
35 | {% for gc in chercheur.groupes_chercheur.all %} | |
36 | <li>{{ gc.nom }}</li> | |
e4d01d1d EMS |
37 | {% endfor %} |
38 | </ul> | |
39 | </td> | |
40 | </tr> | |
4e66ff00 EMS |
41 | {% if chercheur.these %} |
42 | <tr> | |
88eeb814 EMS |
43 | <td> |
44 | <div class="label">Thèse:</div> | |
45 | (ou tout autre travail de recherche — mémoire, HDR, etc. — encadré par un universitaire) | |
46 | </td> | |
4e66ff00 EMS |
47 | <td> |
48 | {% if chercheur.these.url %} | |
49 | <i><a href="{{ chercheur.these.url }}">{{ chercheur.these.titre }}</a></i>, | |
50 | {% else %} | |
51 | <i>{{ chercheur.these.titre }}</i>, | |
52 | {% endif %} | |
53 | {{ chercheur.these.etablissement }}, | |
54 | {{ chercheur.these.annee }}{% if chercheur.these.nb_pages %}, | |
55 | {{ chercheur.these.nb_pages }} pages{% endif %}. | |
56 | </td> | |
57 | </tr> | |
58 | <tr> | |
59 | <td class="label">Directeur:</td> | |
60 | <td>{{ chercheur.these.directeur }}</td> | |
61 | </tr> | |
62 | {% endif %} | |
e4d01d1d EMS |
63 | </table> |
64 | ||
cf4091c8 | 65 | <h2>Discipline, thèmes de recherche</h2> |
e4d01d1d | 66 | <table> |
a6350753 | 67 | {% if chercheur.discipline %} |
e4d01d1d EMS |
68 | <tr> |
69 | <td class="label">Discipline:</td> | |
70 | <td>{{ chercheur.discipline }}</td> | |
71 | </tr> | |
a6350753 | 72 | {% endif %} |
e4d01d1d EMS |
73 | {% if chercheur.theme_recherche %} |
74 | <tr> | |
75 | <td class="label">Thèmes de recherche:</td> | |
76 | <td>{{ chercheur.theme_recherche }}</td> | |
77 | </tr> | |
78 | {% endif %} | |
35b0778c | 79 | {% if chercheur.equipe_recherche %} |
0b0fbbd7 | 80 | <tr> |
35b0778c PP |
81 | <td class="label">Équipe de recherche:</td> |
82 | <td>{{ chercheur.equipe_recherche }}</td> | |
0b0fbbd7 EMS |
83 | </tr> |
84 | {% endif %} | |
a6350753 | 85 | {% if chercheur.mots_cles %} |
e4d01d1d EMS |
86 | <tr> |
87 | <td class="label">Mots-clés:</td> | |
88 | <td>{{ chercheur.mots_cles }}</td> | |
89 | </tr> | |
a6350753 | 90 | {% endif %} |
e4d01d1d EMS |
91 | {% if chercheur.url_site_web %} |
92 | <tr> | |
93 | <td class="label">Url site web:</td> | |
94 | <td><a href="{{ chercheur.url_site_web }}">{{ chercheur.url_site_web }}</a></td> | |
95 | </tr> | |
96 | {% endif %} | |
97 | {% if chercheur.url_blog %} | |
98 | <tr> | |
99 | <td class="label">Blog:</td> | |
100 | <td><a href="{{ chercheur.url_blog }}">{{ chercheur.url_blog }}</a></td> | |
101 | </tr> | |
102 | {% endif %} | |
103 | {% if chercheur.url_reseau_social %} | |
104 | <tr> | |
105 | <td class="label">Réseau social:</td> | |
106 | <td><a href="{{ chercheur.url_reseau_social }}">{{ chercheur.url_reseau_social }}</a></td> | |
107 | </tr> | |
108 | {% endif %} | |
109 | </table> | |
110 | ||
bf84bf2d | 111 | {% if chercheur.membre_instance_auf or chercheur.expert_oif or chercheur.membre_association_francophone or chercheur.membre_reseau_institutionnel %} |
cf4091c8 | 112 | <h2>Activités en Francophonie</h2> |
e4d01d1d EMS |
113 | <table> |
114 | {% if chercheur.membre_instance_auf %} | |
115 | <tr> | |
116 | <td class="label">Membre d'une instance de l'AUF</td> | |
bc15119b EMS |
117 | <td> |
118 | {{ chercheur.get_membre_instance_auf_nom_display }}, | |
119 | {{ chercheur.membre_instance_auf_fonction }}, | |
120 | {{ chercheur.membre_instance_auf_dates }} | |
121 | </td> | |
e4d01d1d EMS |
122 | </tr> |
123 | {% endif %} | |
124 | {% if chercheur.expert_oif %} | |
125 | <tr> | |
8d17a598 | 126 | <td class="label">A déjà été sollicité par l'OIF</td> |
614b3269 | 127 | <td>{{ chercheur.expert_oif_details }}, {{ chercheur.expert_oif_dates }}</td> |
e4d01d1d EMS |
128 | </tr> |
129 | {% endif %} | |
c073c94d | 130 | {% if chercheur.membre_association_francophone %} |
e4d01d1d | 131 | <tr> |
c073c94d EMS |
132 | <td class="label">Membre d'une association ou d'une société savante francophone</td> |
133 | <td>{{ chercheur.membre_association_francophone_details }}</td> | |
134 | </tr> | |
135 | {% endif %} | |
136 | {% if chercheur.membre_reseau_institutionnel %} | |
137 | <tr> | |
138 | <td class="label">Membre d'instances d'un réseau institutionnel de l'AUF</td> | |
bc15119b EMS |
139 | <td> |
140 | {{ chercheur.get_membre_reseau_institutionnel_nom_display }}, | |
141 | {{ chercheur.membre_reseau_institutionnel_fonction }}, | |
142 | {{ chercheur.membre_reseau_institutionnel_dates }} | |
143 | </td> | |
e4d01d1d EMS |
144 | </tr> |
145 | {% endif %} | |
146 | </table> | |
147 | {% endif %} | |
148 | ||
1d6fac5f | 149 | {% if chercheur.expertises.count %} |
cf4091c8 | 150 | <h2>Expertises</h2> |
ee8b3a49 | 151 | {% for expertise in chercheur.expertises.all %} |
e4d01d1d EMS |
152 | <table> |
153 | <tr> | |
154 | <td class="label">Titre de l'expertise:</td> | |
ee8b3a49 | 155 | <td>{{ expertise.nom }}</td> |
e4d01d1d | 156 | </tr> |
ee8b3a49 | 157 | {% if expertise.date %} |
e4d01d1d EMS |
158 | <tr> |
159 | <td class="label">Date:</td> | |
ee8b3a49 | 160 | <td>{{ expertise.date }}</td> |
e4d01d1d EMS |
161 | </tr> |
162 | {% endif %} | |
ee8b3a49 | 163 | {% if expertise.organisme_demandeur and expertise.organisme_demandeur_visible %} |
e4d01d1d EMS |
164 | <tr> |
165 | <td class="label">Organisme demandeur:</td> | |
ee8b3a49 | 166 | <td>{{ expertise.organisme_demandeur }}</td> |
e4d01d1d EMS |
167 | </tr> |
168 | {% endif %} | |
169 | </table> | |
ee8b3a49 | 170 | <hr> |
ee8b3a49 | 171 | {% endfor %} |
cb591fb3 EMS |
172 | <table> |
173 | <tr> | |
174 | <td class="label">Est disposé à réaliser des expertises pour l'AUF</td> | |
1d6fac5f | 175 | <td>{{ chercheur.expertises_auf|yesno:"Oui,Non" }}</td> |
cb591fb3 EMS |
176 | </tr> |
177 | </table> | |
121d9439 | 178 | {% endif %} |
e4d01d1d | 179 | |
297e9ce8 | 180 | {% if chercheur.publications.count %} |
cf4091c8 EMS |
181 | <h2>Publications</h2> |
182 | <ul class="publications"> | |
595ab4d6 | 183 | {% for publication in chercheur.publications.all %} |
cf4091c8 EMS |
184 | {% if publication.titre %} |
185 | <li> | |
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> | |
195 | {% endif %} | |
196 | </p> | |
197 | </li> | |
198 | {% else %} | |
199 | {% if publication.publication_affichage %} | |
200 | <li><p>{{publication.publication_affichage}}</p></li> | |
595ab4d6 | 201 | {% endif %} |
cf4091c8 | 202 | {% endif %} |
595ab4d6 | 203 | {% endfor %} |
cf4091c8 | 204 | </ul> |
595ab4d6 | 205 | {% endif %} |
e4d01d1d | 206 | </div> |