-{% extends 'base.html' %}
-{% load adminmedia %}
-
-{% block title %}RH{% endblock %}
-{% block titre %}Ressources humaines{% endblock %}
-{% block sous_titre %}Accueil{% endblock %}
-
-{% block main %}
-<div id="content-main">
- {% block object-tools %}{% endblock %}
-
-
-
-
- <div class="module">
- <h2>Poster pour un appel d'offre d'emploi</h2>
- </div>
-
- <form action="" method="post" enctype="multipart/form-data">
- <fieldset>
- <h2>Informations personnelles</h2>
- <table id="informations_personnelles">
- <tbody>
- <tr>
- <td>{{ form.prenom.label }}</td>
- <td>{{ form.prenom }}</td>
- </tr>
- <tr>
- <td>{{ form.nom.label }}</td>
- <td>{{ form.nom }}</td>
- </tr>
- <tr>
- <td>{{ form.genre.label }}</td>
- <td>{{ form.genre }}</td>
- </tr>
- <tr>
- <td>{{ form.nationalite.label }}</td>
- <td>{{ form.nationalite }}</td>
- <tr>
- <td>{{ form.situation_famille.label }}</td>
- <td>{{ form.situation_famille }}</td>
- </tr>
- <tr>
- <td>{{ form.nombre_dependant.label }}</td>
- <td>{{ form.nombre_dependant }}<br />
- <span class="info">{{ form.nombre_dependant.help_text }}
- </span>
- </td>
- </tr>
- </tbody>
- </table>
- </fieldset>
- <fieldset>
- <h2>Coordonnées</h2>
- <table id="coordonnees">
- <tbody>
- <tr>
- <td>{{ form.telephone.label }}</td>
- <td>{{ form.telephone }}</td>
- </tr>
- <tr>
- <td>{{ form.email.label }}</td>
- <td>{{ form.email }}</td>
- </tr>
- <tr>
- <td>{{ form.adresse.label }}</td>
- <td>{{ form.adresse }}</td>
- </tr>
- <tr>
- <td>{{ form.ville.label }}</td>
- <td>{{ form.ville }}</td>
- </tr>
- <tr>
- <td>{{ form.etat_province.label }}</td>
- <td>{{ form.etat_province }}</td>
- </tr>
- <tr>
- <td>{{ form.code_postal.label }}</td>
- <td>{{ form.code_postal }}</td>
- </tr>
- <tr>
- <td>{{ form.pays.label }}</td>
- <td>{{ form.pays }}</td>
- </tr>
- </tbody>
- </table>
- </fieldset>
- <fieldset>
- <h2>Informations professionnelles</h2>
- <table id="informations_professionnelles">
- <tbody>
- <tr>
- <td>{{ form.niveau_diplome.label }}</td>
- <td>{{ form.niveau_diplome }}</td>
- </tr>
- <tr>
- <td>{{ form.employeur_actuel.label }}</td>
- <td>{{ form.employeur_actuel }}</td>
- </tr>
- <tr>
- <td>{{ form.poste_actuel.label }}</td>
- <td>{{ form.poste_actuel }}</td>
- </tr>
- <tr>
- <td>{{ form.domaine_professionnel.label }}</td>
- <td>{{ form.domaine_professionnel }}</td>
- </tr>
- </tbody>
- </table>
- </fieldset>
- <fieldset>
- <h2>Pièces jointes</h2>
- <p class="info">CV, lettre de motivation...</p>
- {% include "recrutement/pieces.html" %}
- </fieldset>
- <fieldset>
- <h2>Vérification CAPTCHA</h2>
- <p class="info">Entrez les caractères figurant dans l'image ci-dessous.</p>
- <tr>
- <td>
- {{ form.captcha }}
- {{ form.captcha.errors }}
- </td>
- </tr>
- </fieldset>
- <div class="submit-row">
- <input type="submit" name="save" value="Enregistrer" />
- </div>
- </form>
-
-
-
-</div>
-
-{% endblock %}