--- /dev/null
+<script>
+ $(function () {
+ $("#id_expertise").datetime({ userLang: 'fr' });
+ });
+</script>
+
+ {% if personne_form.errors or chercheur_form.errors or etablissement_form.errors or discipline_form.errors or these_form.errors %}
+<span class="message">Votre fiche n'a pas été enregistrée. Veuillez remplir tous les champs obligatoires (*).</span>
+{% endif %}
+ <fieldset>
+ <legend>Informations personnelles</legend>
+ {% with personne_form as form %}
+ {% include "table_form.html" %}
+ {% endwith %}
+ </fieldset>
+ <fieldset>
+ <legend>Informations académiques</legend>
+ {% with chercheur_form as form %}
+ {% include "table_form.html" %}
+ {% endwith %}
+ {% with groupe_form as form %}
+ {% include "table_form.html" %}
+ {% endwith %}
+ </fieldset>
+
+ <fieldset>
+ <legend>Etablissement de rattachement</legend>
+ {% with etablissement_form as form %}
+ {% include "table_form.html" %}
+ {% endwith %}
+ <p>Si l'établissement n'existe pas ci-dessus</p>
+ {% with etablissement_autre_form as form %}
+ {% include "table_form.html" %}
+ {% endwith %}
+ </fieldset>
+
+ <fieldset>
+ <legend>Champ disciplinaire, thèmes de recherche</legend>
+ {% with discipline_form as form %}
+ {% include "table_form.html" %}
+ {% endwith %}
+ </fieldset>
+
+ <fieldset>
+ <legend>Thèse ou mémoire</legend>
+ <div>
+ <div class="publication">
+ {% with these_form as form %}
+ {% include "table_form.html" %}
+ {% endwith %}
+ </div>
+ <div style="clear:both"></div>
+ </div>
+ </fieldset>
+
+ <fieldset>
+ <legend>Expertise</legend>
+ <div>
+ {% with expertise_form as form %}
+ {% include "table_form.html" %}
+ {% endwith %}
+ </div>
+ </fieldset>