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