3 <link rel=
"stylesheet" type=
"text/css" href=
"{{ STATIC_URL }}admin/css/base.css" />
4 <link rel=
"stylesheet" type=
"text/css" href=
"{{ STATIC_URL }}skin/css/admin.css" />
5 <link rel=
"stylesheet" type=
"text/css" href=
"{{ STATIC_URL }}admin/css/forms.css" />
6 <link rel=
"stylesheet" type=
"text/css" href=
"{{ STATIC_URL }}css/dae.css" />
8 .form-row {padding:
2px
12px;}
9 .module {margin-bottom:
16px;}
15 <h1>Candidat: {{ candidat }}
</h1>
16 <div class=
"visualClear"></div>
17 <h2>Offre d'emploi: {{ candidat.offre_emploi }}
</h2>
19 <fieldset class=
"module aligned">
20 <h2>Informations personnelles
</h2>
21 {% include
"recrutement/form-row.html" with
label=
"Nom" value=candidat.nom %}
22 {% include
"recrutement/form-row.html" with
label=
"Prénom" value=candidat.prenom %}
23 {% include
"recrutement/form-row.html" with
label=
"Genre" value=candidat.get_genre_display %}
24 {% include
"recrutement/form-row.html" with
label=
"Nationalité" value=candidat.nationalite %}
25 {% include
"recrutement/form-row.html" with
label=
"Situation familiale" value=candidat.get_situation_famille_display %}
26 {% include
"recrutement/form-row.html" with
label=
"Nombre de dépendants" value=candidat.nombre_dependant %}
29 <fieldset class=
"module aligned">
31 {% include
"recrutement/form-row.html" with
label=
"Téléphone" value=candidat.telephone %}
32 {% include
"recrutement/form-row.html" with
label=
"Courriel" value=candidat.courriel %}
33 {% include
"recrutement/form-row.html" with
label=
"Adresse" value=candidat.adresse %}
34 {% include
"recrutement/form-row.html" with
label=
"Ville" value=candidat.ville %}
35 {% include
"recrutement/form-row.html" with
label=
"État/Province" value=candidat.etat_province %}
36 {% include
"recrutement/form-row.html" with
label=
"Code postal" value=candidat.code_postal %}
37 {% include
"recrutement/form-row.html" with
label=
"Pays" value=candidat.pays %}
40 <fieldset class=
"module aligned">
41 <h2>Informations professionnelles
</h2>
42 {% include
"recrutement/form-row.html" with
label=
"Niveau du diplôme" value=candidat.niveau_diplome %}
43 {% include
"recrutement/form-row.html" with
label=
"Employeur actuel" value=candidat.employeur_actuel %}
44 {% include
"recrutement/form-row.html" with
label=
"Poste actuel" value=candidat.poste_actuel %}
45 {% include
"recrutement/form-row.html" with
label=
"Domaine professionnel" value=candidat.domaine_professionnel %}
48 <fieldset class=
"module aligned">
49 <h2>Pièces jointes
</h2>
50 {% for pj in candidat.pieces_jointes %}
51 {% include
"recrutement/form-row.html" with
label=
"Type" value=pj.nom %}
55 <fieldset class=
"module aligned">
57 {% for eval in candidat.evaluations.all %}
58 {% include
"recrutement/form-row.html" with label=eval.evaluateur value=eval.get_appreciation %}