1 {% extends
"base.html" %}
4 <div id=
"content-main">
5 {% block object-tools %}{% endblock %}
7 <h1>Poster pour un appel d'offre d'emploi
</h1>
9 <form action=
"" method=
"post" enctype=
"multipart/form-data">
11 <h2>Informations personnelles
</h2>
12 <table id=
"informations_personnelles">
15 <td>{{ form.prenom.label }}
</td>
16 <td>{{ form.prenom }}
</td>
19 <td>{{ form.nom.label }}
</td>
20 <td>{{ form.nom }}
</td>
23 <td>{{ form.genre.label }}
</td>
24 <td>{{ form.genre }}
</td>
27 <td>{{ form.nationalite.label }}
</td>
28 <td>{{ form.nationalite }}
</td>
30 <td>{{ form.situation_famille.label }}
</td>
31 <td>{{ form.situation_famille }}
</td>
34 <td>{{ form.nombre_dependant.label }}
</td>
35 <td>{{ form.nombre_dependant }}
<br />
36 <span class=
"info">{{ form.nombre_dependant.help_text }}
</span>
44 <table id=
"coordonnees">
47 <td>{{ form.telephone.label }}
</td>
48 <td>{{ form.telephone }}
</td>
51 <td>{{ form.email.label }}
</td>
52 <td>{{ form.email }}
</td>
55 <td>{{ form.adresse.label }}
</td>
56 <td>{{ form.adresse }}
</td>
59 <td>{{ form.ville.label }}
</td>
60 <td>{{ form.ville }}
</td>
63 <td>{{ form.etat_province.label }}
</td>
64 <td>{{ form.etat_province }}
</td>
67 <td>{{ form.code_postal.label }}
</td>
68 <td>{{ form.code_postal }}
</td>
71 <td>{{ form.pays.label }}
</td>
72 <td>{{ form.pays }}
</td>
78 <h2>Informations professionnelles
</h2>
79 <table id=
"informations_professionnelles">
82 <td>{{ form.niveau_diplome.label }}
</td>
83 <td>{{ form.niveau_diplome }}
</td>
86 <td>{{ form.employeur_actuel.label }}
</td>
87 <td>{{ form.employeur_actuel }}
</td>
90 <td>{{ form.poste_actuel.label }}
</td>
91 <td>{{ form.poste_actuel }}
</td>
94 <td>{{ form.domaine_professionnel.label }}
</td>
95 <td>{{ form.domaine_professionnel }}
</td>
101 <h2>Pièces jointes
</h2>
102 <p class=
"info">CV, lettre de motivation...
</p>
103 {% include
"recrutement/pieces.html" %}
106 <h2>Vérification CAPTCHA
</h2>
107 <p class=
"info">Entrez les caractères figurant dans l'image ci-dessous.
</p>
111 {{ form.captcha.errors }}
115 <div class=
"submit-row">
116 <input type=
"submit" name=
"save" value=
"Enregistrer" />