X-Git-Url: http://git.auf.org/?p=auf_savoirs_en_partage_django.git;a=blobdiff_plain;f=auf_savoirs_en_partage%2Ftemplates%2Fchercheurs%2Fretrieve.html;h=960d7905ee56bf115b8c1f5a2f1e89ab2ae23818;hp=4eb5503217f869e4351ae8a6534b32b34e4c6855;hb=556d841af434993be60ee9aa2d8230d400687e77;hpb=c1f34f425fac4146f73a6240ca8ad8de0daa9e76
diff --git a/auf_savoirs_en_partage/templates/chercheurs/retrieve.html b/auf_savoirs_en_partage/templates/chercheurs/retrieve.html
index 4eb5503..960d790 100644
--- a/auf_savoirs_en_partage/templates/chercheurs/retrieve.html
+++ b/auf_savoirs_en_partage/templates/chercheurs/retrieve.html
@@ -3,8 +3,103 @@
{% block contenu %}
{{ chercheur }}
-
-Voici la fiche chercheur de {{ chercheur }}.
-
+
+
+
{{chercheur.personne.courriel}}
+
+
Information générales
+
+
+ Nationalité: |
+ {{chercheur.nationalite.nom}} |
+
+
+ Fonction: |
+ {{chercheur.fonction}} |
+
+
+ Diplôme: |
+ {{chercheur.diplome}} |
+
+
+
+
Ãtablissement de rattachement
+
+
+ Localisation: |
+ {% firstof chercheur.etablissement.pays chercheur.etablissement_autre_pays "-" %} |
+
+
+ Ãtablissement: |
+ {% firstof chercheur.etablissement.nom chercheur.etablissement_autre_nom "-" %} |
+
+
+
+
Thèmes de recherche et publications
+
+
+ Thèmes de recherche et domaine d'expertise: |
+ {{chercheur.expertise}} |
+
+
+ Thèse: |
+ {{chercheur.these.publication_affichage}} |
+
+
+ Publication 1: |
+
+ {% with chercheur.publication1 as publication %}{% include "chercheurs/publication_display.html" %}{% endwith %}
+ |
+
+
+ Publication 2: |
+ {{chercheur.publication2.publication_affichage}} |
+
+
+ Publication 3: |
+ {{chercheur.publication3.publication_affichage}} |
+
+
+ Publication 4: |
+ {{chercheur.publication4.publication_affichage}} |
+
+
+
+
Domaines de recherche
+
+
+ Adhésion(s) active(s): |
+
+
+ {% for g in chercheur.chercheurgroupe_set.all %}
+ - {{g.groupe.nom}}
+ {% endfor %}
+
+ |
+
+
+
+
Site web personnel
+
+
+ Url site web: |
+ {% firstof chercheur.url_site_web "" %} |
+
+
+ Blog: |
+ {% firstof chercheur.url_blog "" %} |
+
+
+ Facebook: |
+ {% firstof chercheur.url_facebook "" %} |
+
+
+ Linkedin: |
+ {% firstof chercheur.url_linkedin "" %} |
+
+
+
+
+
{% endblock %}