Commit | Line | Data |
---|---|---|
959162fd AJ |
1 | {% extends "container_base.html" %} |
2 | ||
3 | {% block contenu %} | |
4 | <h4>{{chercheur.personne.prenom}} {{chercheur.personne.nom}}</h4> | |
5 | ||
6 | <div class="contenu-wrapper"> | |
7 | ||
8 | <form method="post"> | |
a955bdb8 AJ |
9 | <fieldset> |
10 | <legend>Informations personnelles</legend> | |
11 | {% with personne_form as form %} | |
12 | {% include "table_form.html" %} | |
13 | {% endwith %} | |
14 | </fieldset> | |
15 | ||
f810842d | 16 | <!--<fieldset> |
a955bdb8 AJ |
17 | <legend>Informations académiques</legend> |
18 | {% with chercheur_form as form %} | |
19 | {% include "table_form.html" %} | |
20 | {% endwith %} | |
f810842d | 21 | </fieldset>--> |
a955bdb8 AJ |
22 | |
23 | <fieldset> | |
24 | <legend>Etablissement de rattachement</legend> | |
25 | {% with etablissement_form as form %} | |
26 | {% include "table_form.html" %} | |
27 | {% endwith %} | |
28 | <p>Si l'établissement n'existe pas ci-dessus</p> | |
29 | {% with etablissement_autre_form as form %} | |
30 | {% include "table_form.html" %} | |
31 | {% endwith %} | |
32 | </fieldset> | |
33 | ||
34 | <fieldset> | |
35 | <legend>Champ disciplinaire, thèmes de recherche</legend> | |
36 | {% with discipline_form as form %} | |
37 | {% include "table_form.html" %} | |
38 | {% endwith %} | |
39 | </fieldset> | |
f810842d AJ |
40 | |
41 | <fieldset> | |
42 | <legend>Thèse</legend> | |
43 | <div> | |
44 | <div class="publication"> | |
45 | {% with these_form as form %} | |
46 | {% include "table_form.html" %} | |
47 | {% endwith %} | |
48 | </div> | |
49 | <div style="clear:both"></div> | |
50 | </div> | |
51 | </fieldset> | |
52 | ||
a955bdb8 AJ |
53 | <fieldset> |
54 | <legend>Publications</legend> | |
55 | <div> | |
56 | <div class="infotip"> | |
57 | <strong>Renseignements préalablements enregistrés</strong> | |
50a045b7 | 58 | <p>{{publication1_form.instance.publication_affichage|default:"-"}}</p> |
a955bdb8 AJ |
59 | </div> |
60 | <div class="publication"> | |
61 | {% with publication1_form as form %} | |
62 | {% include "table_form.html" %} | |
63 | {% endwith %} | |
64 | </div> | |
65 | <div style="clear:both"></div> | |
66 | </div> | |
67 | <p id="show_publications">+ Autres publications</p> | |
68 | <div class="publications_autre"> | |
69 | <h6>- Publication 2</h6> | |
70 | <div class="infotip"> | |
71 | <strong>Renseignements préalablements enregistrés</strong> | |
50a045b7 | 72 | <p>{{publication2_form.instance.publication_affichage|default:"-"}}</p> |
a955bdb8 AJ |
73 | </div> |
74 | <div class="publication"> | |
75 | {% with publication2_form as form %} | |
76 | {% include "table_form.html" %} | |
77 | {% endwith %} | |
78 | </div> | |
79 | <div style="clear:both"></div> | |
80 | <h6>- Publication 3</h6> | |
81 | <div class="infotip"> | |
82 | <strong>Renseignements préalablements enregistrés</strong> | |
50a045b7 | 83 | <p>{{publication3_form.instance.publication_affichage|default:"-"}}</p> |
a955bdb8 AJ |
84 | </div> |
85 | <div class="publication"> | |
86 | {% with publication3_form as form %} | |
87 | {% include "table_form.html" %} | |
88 | {% endwith %} | |
89 | </div> | |
90 | <div style="clear:both"></div> | |
91 | <h6>- Publication 4</h6> | |
92 | <div class="infotip"> | |
93 | <strong>Renseignements préalablements enregistrés</strong> | |
50a045b7 | 94 | <p>{{publication4_form.instance.publication_affichage|default:"-"}}</p> |
a955bdb8 AJ |
95 | </div> |
96 | <div class="publication"> | |
97 | {% with publication4_form as form %} | |
98 | {% include "table_form.html" %} | |
99 | {% endwith %} | |
100 | </div> | |
101 | <div style="clear:both"></div> | |
102 | </div> | |
103 | </fieldset> | |
959162fd AJ |
104 | |
105 | <input type="submit" name="Submit" value="Éditer" class="bouton" /> | |
106 | </form> | |
107 | </div> | |
108 | {% endblock %} |