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>Demandes d'autorisation d'engagement de personnel
</h1>
14 <h2 class=
"section">SECTION
1 - POSTE
</h2>
15 {% with dossier.poste as poste %}
16 {% include 'dae/poste_resume.html' %}
19 <h2 class=
"section">SECTION
2 - PERSONNEL ENGAGÉ
</h2>
22 <div class=
"gauche"><h2>Personne
</h2></div>
24 <table class=
"droite">
27 <th>Mobilité interne
</th>
28 <td colspan=
"3">{% if dossier.mobilite_interne %}oui{% else %}non{% endif %}
34 <div class=
"clear"></div>
35 <table id=
"form-employe">
39 <td colspan=
"5">{{ dossier.employe }}
</td>
47 <h2>Comparaison salariale
</h2>
48 <span class=
"info">dans la région pour les employés occupant un poste similaire
</span>
54 <th>Date fin contrat
</th>
58 <th>Famille Emploi
</th>
60 {% for d in comparaison_dossiers %}
62 <td>{{ d.employe }}
</td>
63 <td>{{ d.poste1.type_poste.nom }} {{ d.complement1 }}
</td>
64 <td>{{ d.contrat_date_fin|default:
"en cours" }}
</td>
65 <td>{{ d.get_salaire_display }}
</td>
66 <td>{{ d.get_salaire_euro_display }}
</td>
67 <td>{{ d.poste1.implantation }}
</td>
68 <td>{{ d.poste1.type_poste.famille_emploi.nom }}
</td>
76 <div id=
"form-dossier">
77 {% comment %}Wrapper du formulaire de dossier{% endcomment %}
78 {% include
"dae/embauche-dossier-consulter.html" %}
82 <h2>Pièces jointes
</h2>
84 {% for pj in dossier.dossierpiece_set.all %}
85 <li><a href=
"{{ pj.fichier.url }}" target=
"_blank">{{ pj.nom }}
</a></li>
91 <h2 class=
"section">SECTION
3 - COÛT GLOBAL
</h2>
94 <table cellspacing=
"0" id=
"global-cost">
95 {% include 'dae/embauche-remun-consulter.html' %}
99 <h2 class=
"section">SECTION
4 - JUSTIFICATION DE LA DEMANDE (OBLIGATOIRE)
</h2>
100 <h3>A - Justification du poste
</h3>
101 <p>{{ poste.justification }}
</p>
103 <h3>B - Justification de l'employé
</h3>
104 <p class=
"info">Les questions posées pour la justification apparaîtront après avoir enregistré le dossier.
</p>
107 <th>NOUVEL EMPLOYÉ
</th>
108 <th>RENOUVELLEMENT, PROLONGATION, RECLASSEMENT, MOBILITÉ INTERNE
</th>
112 {% for j in dossier.justificationnouvelemploye_set.all %}
113 <h4>{{ j.question }}
</h4>
114 <p>{{ j.reponse }}
</p>
118 {% for j in dossier.justificationautreemploye_set.all %}
119 <h4>{{ j.question }}
</h4>
120 <p>{{ j.reponse }}
</p>