Commit | Line | Data |
---|---|---|
932eef9a AJ |
1 | {% extends "container_base.html" %} |
2 | ||
3 | {% block contenu %} | |
6b63c05b | 4 | <h4>Inscription</h4> |
5 | ||
6 | <div class="contenu-wrapper"> | |
6b63c05b | 7 | |
932eef9a | 8 | <form method="post"> |
6b63c05b | 9 | <h5>Informations personnelles</h5> |
932eef9a | 10 | {% with personne_form as form %} |
6b63c05b | 11 | {% include "table_form.html" %} |
932eef9a | 12 | {% endwith %} |
6b63c05b | 13 | |
14 | <h5>Informations académiques</h5> | |
932eef9a | 15 | {% with chercheur_form as form %} |
6b63c05b | 16 | {% include "table_form.html" %} |
932eef9a | 17 | {% endwith %} |
7c596de2 AJ |
18 | |
19 | <h5>Etablissement de rattachement</h5> | |
20 | {% with etablissement_form as form %} | |
21 | {% include "table_form.html" %} | |
22 | {% endwith %} | |
00755d9b AJ |
23 | <p>Si l'établissement n'existe pas ci-dessus</p> |
24 | {% with etablissement_autre_form as form %} | |
25 | {% include "table_form.html" %} | |
26 | {% endwith %} | |
7c596de2 | 27 | |
00755d9b | 28 | <h5>Champ disciplinaire, thèmes de recherche</h5> |
7c596de2 AJ |
29 | {% with discipline_form as form %} |
30 | {% include "table_form.html" %} | |
00755d9b AJ |
31 | {% endwith %} |
32 | ||
33 | <h5>Publications</h5> | |
34 | {% with publication1_form as form %} | |
35 | {% include "table_form.html" %} | |
7c596de2 AJ |
36 | {% endwith %} |
37 | ||
00755d9b | 38 | <p id="show_publications">Autres publications</p> |
6b63c05b | 39 | |
00755d9b AJ |
40 | <div class="publications_autre"> |
41 | <h6>Publication 2</h6> | |
42 | {% with publication2_form as form %} | |
43 | {% include "table_form.html" %} | |
44 | {% endwith %} | |
45 | <h6>Publication 3</h6> | |
46 | {% with publication3_form as form %} | |
47 | {% include "table_form.html" %} | |
48 | {% endwith %} | |
49 | <h6>Publication 4</h6> | |
50 | {% with publication4_form as form %} | |
51 | {% include "table_form.html" %} | |
52 | {% endwith %} | |
53 | </div> | |
6b63c05b | 54 | <br /> |
932eef9a | 55 | <input type="submit" name="Submit" value="Inscription" class="bouton" /> |
932eef9a | 56 | </form> |
6b63c05b | 57 | </div> |
932eef9a | 58 | {% endblock %} |