1 {% extends 'base.html' %}
4 {% block title %}RH - DAE - Embauche{% endblock %}
5 {% block titre %}Ressources humaines{% endblock %}
6 {% block sous_titre %}Demande d'autorisation d'embauche{% endblock %}
9 <link rel=
"stylesheet" type=
"text/css" href=
"{{ MEDIA_URL }}css/dae.css" />
13 <h1 class=
"gauche">Demandes d'autorisation d'engagement de personnel
</h1>
14 <a class=
"droite bouton-modifier" href=
"{% url embauche dossier.poste.key dossier.id %}">Modifier
<a>
15 <div class=
"visualClear"></div>
17 <h2 class=
"section">SECTION
1 - POSTE
</h2>
18 {% with dossier.poste as poste %}
19 {% include 'dae/poste_resume.html' %}
22 <h2 class=
"section">SECTION
2 - PERSONNEL ENGAGÉ
</h2>
25 <div class=
"gauche"><h2>Personne
</h2></div>
27 <table class=
"droite">
30 <th>Mobilité interne
</th>
31 <td colspan=
"3">{% if dossier.mobilite_interne %}oui{% else %}non{% endif %}
37 <div class=
"clear"></div>
38 <table id=
"form-employe">
42 <td colspan=
"5">{{ dossier.employe }}
</td>
50 <h2>Comparaison salariale
</h2>
51 <span class=
"info">dans la région pour les employés occupant un poste similaire
</span>
57 <th>Date fin contrat
</th>
61 <th>Famille Emploi
</th>
63 {% for d in comparaison_dossiers %}
65 <td>{{ d.employe }}
</td>
66 <td>{{ d.poste1.type_poste.nom }} {{ d.complement1 }}
</td>
67 <td>{{ d.contrat_date_fin|default:
"en cours" }}
</td>
68 <td>{{ d.get_salaire_display }}
</td>
69 <td>{{ d.get_salaire_euro_display }}
</td>
70 <td>{{ d.poste1.implantation }}
</td>
71 <td>{{ d.poste1.type_poste.famille_emploi.nom }}
</td>
79 <div id=
"form-dossier">
80 {% comment %}Wrapper du formulaire de dossier{% endcomment %}
81 {% include
"dae/embauche-dossier-consulter.html" %}
85 <h2>Pièces jointes
</h2>
87 {% for pj in dossier.dossierpiece_set.all %}
88 <li><a href=
"{{ pj.fichier.url }}" target=
"_blank">{{ pj.nom }}
</a></li>
94 <h2 class=
"section">SECTION
3 - COÛT GLOBAL
</h2>
97 <table cellspacing=
"0" id=
"global-cost">
98 {% include 'dae/embauche-remun-consulter.html' %}
102 <h2 class=
"section">SECTION
4 - JUSTIFICATION DE LA DEMANDE (OBLIGATOIRE)
</h2>
103 <h3>A - Justification du poste
</h3>
104 <p>{{ poste.justification }}
</p>
106 <h3>B - Justification de l'employé
</h3>
107 <p class=
"info">Les questions posées pour la justification apparaîtront après avoir enregistré le dossier.
</p>
110 <th>NOUVEL EMPLOYÉ
</th>
111 <th>RENOUVELLEMENT, PROLONGATION, RECLASSEMENT, MOBILITÉ INTERNE
</th>
115 {% for j in dossier.justificationnouvelemploye_set.all %}
116 <h4>{{ j.question }}
</h4>
117 <p>{{ j.reponse }}
</p>
121 {% for j in dossier.justificationautreemploye_set.all %}
122 <h4>{{ j.question }}
</h4>
123 <p>{{ j.reponse }}
</p>