<html>
<head>
- <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pdf.css" />
+ <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}admin/css/base.css" />
+ <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}skin/css/admin.css" />
+ <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}admin/css/forms.css" />
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/dae.css" />
-
+ <style>
+ .form-row {padding: 2px 12px;}
+ .module {margin-bottom: 16px;}
+ </style>
</head>
-<body>
- <h1>Candidat: {{ candidat }}</h1>
- <div class="visualClear"></div>
- <h2>Offre d'emploi: {{ candidat.offre_emploi }}</h2>
- <fieldset>
- <h2>Informations personnelles</h2>
- <ul>
- <li>Nom: {{ candidat.nom }}</li>
- <li>Prenom: {{ candidat.prenom }}</li>
- <li>Genre: {{ candidat.genre }}</li>
- <li>Nationalité: {{ candidat.nationalite }}</li>
- <li>Situation familiale: {{ candidat.situation_famille }}</li>
- <li>Nombre de dépendant: {{ candidat.nombre_dependant }}</li>
- </ul>
- </fieldset>
- <fieldset>
- <h2>Coordonnées</h2>
- <ul>
- <li>Téléphone: {{ candidat.telephone }}</li>
- <li>Courriel: {{ candidat.courriel }}</li>
- <li>Adresse: {{ candidat.adresse }}</li>
- <li>Ville: {{ candidat.ville }}</li>
- <li>État/Province: {{ candidat.etat_province }}</li>
- <li>Code postal: {{ candidat.code_postal }}</li>
- <li>Pays: {{ candidat.pays }}</li>
- </ul>
- </fieldset>
- <fieldset>
- <h2>Informations professionnelles</h2>
- <ul>
- <li>Niveau du diplôme: {{ candidat.niveau_diplome }}</li>
- <li>Employeur actuel: {{ candidat.employeur_actuel }}</li>
- <li>Poste actuel: {{ candidat.poste_actuel }}</li>
- <li>Domaine professionnel: {{ candidat.domaine_professionnel }}</li>
- </ul>
- </fieldset>
+ <body>
+ <div id="content">
+ <h1>Candidat: {{ candidat }}</h1>
+ <div class="visualClear"></div>
+ <h2>Offre d'emploi: {{ candidat.offre_emploi }}</h2>
+
+ <fieldset class="module aligned">
+ <h2>Informations personnelles</h2>
+ {% include "recrutement/form-row.html" with label="Nom" value=candidat.nom %}
+ {% include "recrutement/form-row.html" with label="Prénom" value=candidat.prenom %}
+ {% include "recrutement/form-row.html" with label="Genre" value=candidat.genre %}
+ {% include "recrutement/form-row.html" with label="Nationalité" value=candidat.nationalite %}
+ {% include "recrutement/form-row.html" with label="Situation familiale" value=candidat.situation_famille %}
+ {% include "recrutement/form-row.html" with label="Nombre de dépendants" value=candidat.nombre_dependant %}
+ </fieldset>
+
+ <fieldset class="module aligned">
+ <h2>Coordonnées</h2>
+ {% include "recrutement/form-row.html" with label="Téléphone" value=candidat.telephone %}
+ {% include "recrutement/form-row.html" with label="Courriel" value=candidat.courriel %}
+ {% include "recrutement/form-row.html" with label="Adresse" value=candidat.adresse %}
+ {% include "recrutement/form-row.html" with label="Ville" value=candidat.ville %}
+ {% include "recrutement/form-row.html" with label="État/Province" value=candidat.etat_province %}
+ {% include "recrutement/form-row.html" with label="Code postal" value=candidat.code_postal %}
+ {% include "recrutement/form-row.html" with label="Pays" value=candidat.pays %}
+ </fieldset>
+
+ <fieldset class="module aligned">
+ <h2>Informations professionnelles</h2>
+ {% include "recrutement/form-row.html" with label="Niveau du diplôme" value=candidat.niveau_diplome %}
+ {% include "recrutement/form-row.html" with label="Employeur actuel" value=candidat.employeur_actuel %}
+ {% include "recrutement/form-row.html" with label="Poste actuel" value=candidat.poste_actuel %}
+ {% include "recrutement/form-row.html" with label="Domaine professionnel" value=candidat.domaine_professionnel %}
+ </fieldset>
+ </div>
</body>