Commit | Line | Data |
---|---|---|
5d5a57a4 OL |
1 | {% extends 'base.html' %} |
2 | {% load adminmedia %} | |
3 | ||
4 | {% block title %}RH - DAE - Embauche{% endblock %} | |
5 | {% block titre %}Ressources humaines{% endblock %} | |
6 | {% block sous_titre %}Demande d'autorisation d'embauche{% endblock %} | |
7 | ||
8 | {% block extrahead %} | |
5d5a57a4 | 9 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/dae.css" /> |
5d5a57a4 OL |
10 | {% endblock %} |
11 | ||
12 | {% block main %} | |
0c5f7281 | 13 | <h1 class="gauche">Demandes d'autorisation d'engagement de personnel</h1> |
e6f52402 | 14 | <a class="droite bouton-modifier" href="{% url embauche dossier.poste.key dossier.id %}">Modifier</a> |
0c5f7281 OL |
15 | <div class="visualClear"></div> |
16 | ||
5d5a57a4 OL |
17 | <h2 class="section">SECTION 1 - POSTE</h2> |
18 | {% with dossier.poste as poste %} | |
19 | {% include 'dae/poste_resume.html' %} | |
20 | {% endwith %} | |
21 | ||
22 | <h2 class="section">SECTION 2 - PERSONNEL ENGAGÉ</h2> | |
23 | <fieldset> | |
24 | <div> | |
25 | <div class="gauche"><h2>Personne</h2></div> | |
26 | <div class="droite"> | |
27 | <table class="droite"> | |
28 | <tbody> | |
29 | <tr> | |
30 | <th>Mobilité interne</th> | |
31 | <td colspan="3">{% if dossier.mobilite_interne %}oui{% else %}non{% endif %} | |
32 | </tr> | |
33 | </tbody> | |
34 | </table> | |
35 | </div> | |
36 | </div> | |
37 | <div class="clear"></div> | |
38 | <table id="form-employe"> | |
39 | <tbody> | |
40 | <tr> | |
41 | <th>Employé</th> | |
42 | <td colspan="5">{{ dossier.employe }}</td> | |
43 | </tr> | |
44 | </tbody> | |
45 | </table> | |
46 | ||
47 | </fieldset> | |
48 | ||
49 | <fieldset> | |
50 | <h2>Comparaison salariale</h2> | |
51 | <span class="info">dans la région pour les employés occupant un poste similaire</span> | |
52 | <table> | |
53 | <tbody> | |
54 | <tr> | |
55 | <th>Employé</th> | |
56 | <th>Poste</th> | |
57 | <th>Date fin contrat</th> | |
58 | <th>Salaire</th> | |
59 | <th>Salaire EUR</th> | |
60 | <th>Implantation</th> | |
61 | <th>Famille Emploi</th> | |
62 | </tr> | |
63 | {% for d in comparaison_dossiers %} | |
64 | <tr> | |
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> | |
72 | </tr> | |
73 | {% endfor %} | |
74 | </tbody> | |
75 | </table> | |
76 | </fieldset> | |
77 | ||
78 | ||
79 | <div id="form-dossier"> | |
80 | {% comment %}Wrapper du formulaire de dossier{% endcomment %} | |
81 | {% include "dae/embauche-dossier-consulter.html" %} | |
82 | </div> | |
83 | ||
84 | <fieldset> | |
a9e52624 OL |
85 | <h2>Pièces jointes</h2> |
86 | <ul> | |
87 | {% for pj in dossier.dossierpiece_set.all %} | |
88 | <li><a href="{{ pj.fichier.url }}" target="_blank">{{ pj.nom }}</a></li> | |
89 | {% endfor %} | |
90 | </ul> | |
91 | ||
5d5a57a4 OL |
92 | </fieldset> |
93 | ||
94 | <h2 class="section">SECTION 3 - COÛT GLOBAL</h2> | |
95 | ||
96 | <fieldset> | |
a9e52624 OL |
97 | <table cellspacing="0" id="global-cost"> |
98 | {% include 'dae/embauche-remun-consulter.html' %} | |
99 | </table> | |
5d5a57a4 OL |
100 | </fieldset> |
101 | ||
102 | <h2 class="section">SECTION 4 - JUSTIFICATION DE LA DEMANDE (OBLIGATOIRE)</h2> | |
103 | <h3>A - Justification du poste</h3> | |
104 | <p>{{ poste.justification }}</p> | |
105 | ||
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> | |
108 | <table> | |
109 | <tr> | |
110 | <th>NOUVEL EMPLOYÉ</th> | |
111 | <th>RENOUVELLEMENT, PROLONGATION, RECLASSEMENT, MOBILITÉ INTERNE</th> | |
112 | </tr> | |
113 | <tr> | |
114 | <td> | |
a9e52624 OL |
115 | {% for j in dossier.justificationnouvelemploye_set.all %} |
116 | <h4>{{ j.question }}</h4> | |
117 | <p>{{ j.reponse }}</p> | |
118 | {% endfor %} | |
5d5a57a4 OL |
119 | </td> |
120 | <td> | |
a9e52624 OL |
121 | {% for j in dossier.justificationautreemploye_set.all %} |
122 | <h4>{{ j.question }}</h4> | |
123 | <p>{{ j.reponse }}</p> | |
124 | {% endfor %} | |
5d5a57a4 OL |
125 | </td> |
126 | </tr> | |
127 | </table> | |
e6f52402 OL |
128 | |
129 | <fieldset> | |
130 | <h2>Validation</h2> | |
131 | ||
132 | <ul> | |
133 | {% for commentaire in dossier.historique_desc %} | |
134 | <li>{{ commentaire }}</li> | |
135 | {% endfor %} | |
136 | </ul> | |
137 | ||
138 | <form action="" method="post"> | |
139 | <table> | |
140 | {{ validationForm }} | |
141 | </table> | |
142 | <input type="submit" value="valider" /> | |
143 | </form> | |
144 | </fieldset> | |
145 | ||
5d5a57a4 OL |
146 | {% endblock %} |
147 |