3 {% if forms.has_errors %}
4 <div id=
"flash-message">Votre fiche n'a pas été enregistrée. Veuillez remplir tous les champs obligatoires (*).
</div>
6 <fieldset class=
"horizontal-radio-buttons">
7 <legend>Informations personnelles
</legend>
9 {% form_field forms.chercheur.nom %}
10 {% form_field forms.chercheur.prenom %}
11 {% form_field forms.chercheur.courriel %}
12 {% form_field forms.chercheur.genre %}
13 {% if forms.chercheur.password %}
14 {% form_field forms.chercheur.password %}
15 {% form_field forms.chercheur.password_confirmation %}
21 <legend>Informations académiques
</legend>
23 {% form_field forms.chercheur.statut %}
24 {% form_field forms.chercheur.diplome %}
25 {% form_field forms.groupes.groupes %}
30 <legend>Etablissement de rattachement
<span style=
"color:red">*
</span></legend>
32 {% form_field forms.chercheur.pays_etablissement %}
33 {% form_field forms.chercheur.etablissement %}
38 <legend>Thèse
<em>(ou tout autre travail de recherche
— mémoire, HDR, etc.
— encadré par un universitaire)
</em></legend>
39 {% with forms.these as form %}
40 {% include
"table_form.html" %}
45 <legend>Discipline, thèmes de recherche
</legend>
47 {% form_field forms.chercheur.discipline %}
48 {% form_field forms.chercheur.theme_recherche %}
49 {% form_field forms.chercheur.groupe_recherche %}
50 {% form_field forms.chercheur.mots_cles %}
51 {% form_field forms.chercheur.url_site_web %}
52 {% form_field forms.chercheur.url_blog %}
53 {% form_field forms.chercheur.url_reseau_social %}
58 <legend>Activités en Francophonie
</legend>
59 <table class=
"horizontal-radio-buttons">
60 {% form_field forms.chercheur.membre_instance_auf %}
61 {% form_field forms.chercheur.membre_instance_auf_details %}
62 {% form_field forms.chercheur.membre_instance_auf_dates %}
63 {% form_field forms.chercheur.expert_oif %}
64 {% form_field forms.chercheur.expert_oif_details %}
65 {% form_field forms.chercheur.expert_oif_dates %}
66 {% form_field forms.chercheur.membre_association_francophone %}
67 {% form_field forms.chercheur.membre_association_francophone_details %}
68 {% form_field forms.chercheur.membre_reseau_institutionnel %}
69 {% form_field forms.chercheur.membre_reseau_institutionnel_details %}
70 {% form_field forms.chercheur.membre_reseau_institutionnel_dates %}
74 <fieldset id=
"expertises" class=
"horizontal-radio-buttons">
75 <legend>Expertises
</legend>
76 {{ forms.expertises.management_form }}
77 {% for form in forms.expertises.forms %}
80 {% form_field form.nom %}
81 {% form_field form.date %}
82 {% form_field form.organisme_demandeur %}
83 {% form_field form.organisme_demandeur_visible %}
90 {% form_field forms.chercheur.expertises_auf %}
94 <fieldset id=
"publications">
95 <legend>Publications
</legend>
96 {{ forms.publications.management_form }}
97 {% for form in forms.publications.forms %}
99 {% if form.instance.publication_affichage %}
100 <p class=
"publication_affichage"><strong>Renseignements préalablement enregistrés:
</strong><br />
101 {{ form.instance.publication_affichage }}
</p>
104 {% form_field form.auteurs %}
105 {% form_field form.titre %}
106 {% form_field form.revue %}
107 {% form_field form.annee %}
108 {% form_field form.editeur %}
109 {% form_field form.lieu_edition %}
110 {% form_field form.nb_pages %}
111 {% form_field form.url %}
120 <td>{{ forms.chercheur.attestation }}
</td>
122 {{ forms.chercheur.attestation.label_tag }}
123 {{ forms.chercheur.attestation.errors }}