Commit | Line | Data |
---|---|---|
c1f34f42 | 1 | {% extends "container_base.html" %} |
2 | ||
3 | {% block contenu %} | |
4 | <h4>{{ chercheur }}</h4> | |
5 | ||
31b6174a | 6 | <div class="contenu-wrapper"> |
556d841a AJ |
7 | <div id="fiche_chercheur"> |
8 | <p>{{chercheur.personne.courriel}}</p> | |
9 | ||
10 | <h5>Information générales</h5> | |
11 | <table> | |
12 | <tr> | |
13 | <td class="label">Nationalité:</td> | |
14 | <td>{{chercheur.nationalite.nom}}</td> | |
15 | </tr> | |
16 | <tr> | |
17 | <td class="label">Fonction:</td> | |
18 | <td>{{chercheur.fonction}}</td> | |
19 | </tr> | |
20 | <tr> | |
21 | <td class="label">Diplôme:</td> | |
22 | <td>{{chercheur.diplome}}</td> | |
23 | </tr> | |
24 | </table> | |
52b4d02e | 25 | |
556d841a AJ |
26 | <h5>Établissement de rattachement</h5> |
27 | <table> | |
28 | <tr> | |
29 | <td class="label">Localisation:</td> | |
30 | <td>{% firstof chercheur.etablissement.pays chercheur.etablissement_autre_pays "-" %}</td> | |
31 | </tr> | |
32 | <tr> | |
33 | <td class="label">Établissement:</td> | |
34 | <td>{% firstof chercheur.etablissement.nom chercheur.etablissement_autre_nom "-" %}</td> | |
35 | </tr> | |
36 | </table> | |
52b4d02e | 37 | |
556d841a AJ |
38 | <h5>Thèmes de recherche et publications</h5> |
39 | <table id="publications"> | |
40 | <tr> | |
41 | <td class="label">Thèmes de recherche et domaine d'expertise:</td> | |
42 | <td>{{chercheur.expertise}}</td> | |
43 | </tr> | |
44 | <tr> | |
45 | <td class="label">Thèse:</td> | |
46 | <td>{{chercheur.these.publication_affichage}}</td> | |
47 | </tr> | |
48 | <tr> | |
49 | <td class="label">Publication 1:</td> | |
50 | <td> | |
51 | {% with chercheur.publication1 as publication %}{% include "chercheurs/publication_display.html" %}{% endwith %} | |
52 | </td> | |
53 | </tr> | |
54 | <tr> | |
55 | <td class="label">Publication 2:</td> | |
56 | <td>{{chercheur.publication2.publication_affichage}}</td> | |
57 | </tr> | |
58 | <tr> | |
59 | <td class="label">Publication 3:</td> | |
60 | <td>{{chercheur.publication3.publication_affichage}}</td> | |
61 | </tr> | |
62 | <tr> | |
63 | <td class="label">Publication 4:</td> | |
64 | <td>{{chercheur.publication4.publication_affichage}}</td> | |
65 | </tr> | |
66 | </table> | |
52b4d02e | 67 | |
556d841a AJ |
68 | <h5>Domaines de recherche</h5> |
69 | <table> | |
70 | <tr> | |
71 | <td class="label">Adhésion(s) active(s):</td> | |
72 | <td> | |
73 | <ul> | |
74 | {% for g in chercheur.chercheurgroupe_set.all %} | |
75 | <li>{{g.groupe.nom}}</li> | |
76 | {% endfor %} | |
77 | </ul> | |
78 | </td> | |
79 | </tr> | |
80 | </table> | |
81 | ||
82 | <h5>Site web personnel</h5> | |
83 | <table> | |
84 | <tr> | |
85 | <td class="label">Url site web:</td> | |
86 | <td>{% firstof chercheur.url_site_web "" %}</td> | |
87 | </tr> | |
88 | <tr> | |
89 | <td class="label">Blog:</td> | |
90 | <td>{% firstof chercheur.url_blog "" %}</td> | |
91 | </tr> | |
92 | <tr> | |
93 | <td class="label">Facebook:</td> | |
94 | <td>{% firstof chercheur.url_facebook "" %}</td> | |
95 | </tr> | |
96 | <tr> | |
97 | <td class="label">Linkedin:</td> | |
98 | <td>{% firstof chercheur.url_linkedin "" %}</td> | |
99 | </tr> | |
100 | </table> | |
101 | </div> | |
6befc7c9 | 102 | |
31b6174a | 103 | </div> |
c1f34f42 | 104 | |
105 | {% endblock %} |