From 956f393e2dfafc1ec06fa84260a60f613e18ae9a Mon Sep 17 00:00:00 2001 From: Ali Jetha Date: Thu, 28 Oct 2010 19:07:12 -0400 Subject: [PATCH] Mise en commun form edit et create chercheur --- .../templates/chercheurs/chercheur_form.html | 63 ++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 auf_savoirs_en_partage/templates/chercheurs/chercheur_form.html diff --git a/auf_savoirs_en_partage/templates/chercheurs/chercheur_form.html b/auf_savoirs_en_partage/templates/chercheurs/chercheur_form.html new file mode 100644 index 0000000..83fadec --- /dev/null +++ b/auf_savoirs_en_partage/templates/chercheurs/chercheur_form.html @@ -0,0 +1,63 @@ + + + {% if personne_form.errors or chercheur_form.errors or etablissement_form.errors or discipline_form.errors or these_form.errors %} +Votre fiche n'a pas été enregistrée. Veuillez remplir tous les champs obligatoires (*). +{% endif %} +
+ Informations personnelles + {% with personne_form as form %} + {% include "table_form.html" %} + {% endwith %} +
+
+ Informations académiques + {% with chercheur_form as form %} + {% include "table_form.html" %} + {% endwith %} + {% with groupe_form as form %} + {% include "table_form.html" %} + {% endwith %} +
+ +
+ Etablissement de rattachement + {% with etablissement_form as form %} + {% include "table_form.html" %} + {% endwith %} +

Si l'établissement n'existe pas ci-dessus

+ {% with etablissement_autre_form as form %} + {% include "table_form.html" %} + {% endwith %} +
+ +
+ Champ disciplinaire, thèmes de recherche + {% with discipline_form as form %} + {% include "table_form.html" %} + {% endwith %} +
+ +
+ Thèse ou mémoire +
+
+ {% with these_form as form %} + {% include "table_form.html" %} + {% endwith %} +
+
+
+
+ +
+ Expertise +
+ {% with expertise_form as form %} + {% include "table_form.html" %} + {% endwith %} +
+
-- 1.7.10.4