Commit | Line | Data |
---|---|---|
c1f34f42 | 1 | {% extends "container_base.html" %} |
2 | ||
3 | {% block contenu %} | |
0e9597af AJ |
4 | |
5 | {% if inscription %} | |
6 | <span class="contenu-wrapper message">Votre fiche a bien été enregistrée.</span> | |
7 | {% endif %} | |
8 | ||
7f7de67a AJ |
9 | <h4>Chercheurs</h4> |
10 | ||
c1f34f42 | 11 | <h4>{{ chercheur }}</h4> |
12 | ||
31b6174a | 13 | <div class="contenu-wrapper"> |
556d841a AJ |
14 | <div id="fiche_chercheur"> |
15 | <p>{{chercheur.personne.courriel}}</p> | |
0e9597af | 16 | {% if chercheur.etablissement.nom or chercheur.etablissement_autre_nom %} |
7f7de67a | 17 | <p>{% firstof chercheur.etablissement.nom chercheur.etablissement_autre_nom "-" %}, {% firstof chercheur.etablissement.pays chercheur.etablissement_autre_pays "-" %}</p> |
0e9597af | 18 | {% endif %} |
556d841a | 19 | |
556d841a | 20 | <table> |
0e9597af | 21 | {% if chercheur.nationalite %} |
556d841a AJ |
22 | <tr> |
23 | <td class="label">Nationalité:</td> | |
1052d86c | 24 | <td>{{chercheur.nationalite.nom|default:"-"}}</td> |
556d841a | 25 | </tr> |
0e9597af | 26 | {% endif %} |
db5cad32 | 27 | <!--<tr> |
556d841a | 28 | <td class="label">Fonction:</td> |
e427f068 | 29 | <td>{{chercheur.fonction_display|default:"-"}}</td> |
db5cad32 | 30 | </tr>--> |
556d841a AJ |
31 | <tr> |
32 | <td class="label">Diplôme:</td> | |
1052d86c | 33 | <td>{{chercheur.diplome|default:"-"}}</td> |
556d841a AJ |
34 | </tr> |
35 | </table> | |
556d841a | 36 | <table> |
7f7de67a AJ |
37 | {% if chercheur.url_site_web %} |
38 | <tr> | |
39 | <td class="label">Url site web:</td> | |
40 | <td><a href="{{chercheur.url_site_web}}">{{chercheur.url_site_web}}</a></td> | |
41 | </tr> | |
42 | {% endif %} | |
43 | {% if chercheur.url_blog %} | |
556d841a | 44 | <tr> |
7f7de67a AJ |
45 | <td class="label">Blog:</td> |
46 | <td><a href="{{chercheur.url_blog}}">{{chercheur.url_blog}}</a></td> | |
556d841a | 47 | </tr> |
7f7de67a AJ |
48 | {% endif %} |
49 | {% if chercheur.url_facebook %} | |
556d841a | 50 | <tr> |
7f7de67a AJ |
51 | <td class="label">Facebook:</td> |
52 | <td><a href="{{chercheur.url_facebook}}">{{chercheur.url_facebook}}</a></td> | |
556d841a | 53 | </tr> |
7f7de67a AJ |
54 | {% endif %} |
55 | {% if chercheur.url_linkedin %} | |
56 | <tr> | |
57 | <td class="label">Linkedin:</td> | |
58 | <td><a href="{{chercheur.url_linkedin}}">{{chercheur.url_linkedin}}</a></td> | |
59 | </tr> | |
60 | {% endif %} | |
556d841a | 61 | </table> |
db5cad32 AJ |
62 | |
63 | {% if chercheur.expertise %} | |
64 | <h5>Expertise</h5> | |
65 | <table> | |
66 | <tr> | |
67 | <td class="label">Titre de l'expertise:</td> | |
68 | <td>{{chercheur.expertise.nom}}</td> | |
69 | </tr> | |
70 | {% if chercheur.expertise.date %} | |
71 | <tr> | |
72 | <td class="label">Date:</td> | |
73 | <td>{{chercheur.expertise.date}}</td> | |
74 | </tr> | |
75 | {% endif %} | |
76 | {% if chercheur.expertise.organisme_demandeur and chercheur.expertise.organisme_demandeur_visible %} | |
77 | <tr> | |
78 | <td class="label">Organisme demandeur:</td> | |
79 | <td>{{chercheur.expertise.organisme_demandeur}}</td> | |
80 | </tr> | |
81 | {% endif %} | |
82 | </table> | |
83 | {% endif %} | |
52b4d02e | 84 | |
556d841a AJ |
85 | <h5>Thèmes de recherche et publications</h5> |
86 | <table id="publications"> | |
7f7de67a | 87 | <tr class="souligne"> |
db5cad32 AJ |
88 | <td class="label">Thèmes de recherche:</td> |
89 | <td>{{chercheur.theme_recherche}}</td> | |
556d841a | 90 | </tr> |
7f7de67a AJ |
91 | {% if chercheur.these %} |
92 | <tr class="souligne"> | |
556d841a | 93 | <td class="label">Thèse:</td> |
12514a21 | 94 | {% with chercheur.these as publication %}{% include "chercheurs/publication_display.html" %}{% endwith %} |
556d841a | 95 | </tr> |
7f7de67a | 96 | {% endif %} |
556d841a | 97 | <tr> |
7f7de67a AJ |
98 | <td class="label">Publications:</td> |
99 | {% with chercheur.publication1 as publication %}{% include "chercheurs/publication_display.html" %}{% endwith %} | |
556d841a AJ |
100 | </tr> |
101 | <tr> | |
7f7de67a AJ |
102 | <td class="label"></td> |
103 | {% with chercheur.publication2 as publication %}{% include "chercheurs/publication_display.html" %}{% endwith %} | |
556d841a AJ |
104 | </tr> |
105 | <tr> | |
7f7de67a AJ |
106 | <td class="label"></td> |
107 | {% with chercheur.publication3 as publication %}{% include "chercheurs/publication_display.html" %}{% endwith %} | |
556d841a AJ |
108 | </tr> |
109 | <tr> | |
7f7de67a AJ |
110 | <td class="label"></td> |
111 | {% with chercheur.publication4 as publication %}{% include "chercheurs/publication_display.html" %}{% endwith %} | |
556d841a AJ |
112 | </tr> |
113 | </table> | |
52b4d02e | 114 | |
556d841a AJ |
115 | <h5>Domaines de recherche</h5> |
116 | <table> | |
117 | <tr> | |
118 | <td class="label">Adhésion(s) active(s):</td> | |
119 | <td> | |
7f7de67a AJ |
120 | {% for g in chercheur.chercheurgroupe_set.all %} |
121 | {{g.groupe.nom}}<br /> | |
122 | {% endfor %} | |
556d841a AJ |
123 | </td> |
124 | </tr> | |
125 | </table> | |
add2851c AJ |
126 | |
127 | {% if chercheur.discipline %} | |
128 | <h5>Discipline</h5> | |
129 | <table> | |
130 | <tr> | |
2e7bc859 AJ |
131 | <td class="label">Discipline:</td> |
132 | <td>{{chercheur.discipline}}</td> | |
add2851c | 133 | </tr> |
2e7bc859 | 134 | </table> |
5b9abc81 | 135 | {% endif %} |
556d841a | 136 | </div> |
6befc7c9 | 137 | |
31b6174a | 138 | </div> |
c1f34f42 | 139 | |
140 | {% endblock %} |