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 %} | |
13 | <h1>Demandes d'autorisation d'engagement de personnel</h1> | |
5d5a57a4 OL |
14 | <h2 class="section">SECTION 1 - POSTE</h2> |
15 | {% with dossier.poste as poste %} | |
16 | {% include 'dae/poste_resume.html' %} | |
17 | {% endwith %} | |
18 | ||
19 | <h2 class="section">SECTION 2 - PERSONNEL ENGAGÉ</h2> | |
20 | <fieldset> | |
21 | <div> | |
22 | <div class="gauche"><h2>Personne</h2></div> | |
23 | <div class="droite"> | |
24 | <table class="droite"> | |
25 | <tbody> | |
26 | <tr> | |
27 | <th>Mobilité interne</th> | |
28 | <td colspan="3">{% if dossier.mobilite_interne %}oui{% else %}non{% endif %} | |
29 | </tr> | |
30 | </tbody> | |
31 | </table> | |
32 | </div> | |
33 | </div> | |
34 | <div class="clear"></div> | |
35 | <table id="form-employe"> | |
36 | <tbody> | |
37 | <tr> | |
38 | <th>Employé</th> | |
39 | <td colspan="5">{{ dossier.employe }}</td> | |
40 | </tr> | |
41 | </tbody> | |
42 | </table> | |
43 | ||
44 | </fieldset> | |
45 | ||
46 | <fieldset> | |
47 | <h2>Comparaison salariale</h2> | |
48 | <span class="info">dans la région pour les employés occupant un poste similaire</span> | |
49 | <table> | |
50 | <tbody> | |
51 | <tr> | |
52 | <th>Employé</th> | |
53 | <th>Poste</th> | |
54 | <th>Date fin contrat</th> | |
55 | <th>Salaire</th> | |
56 | <th>Salaire EUR</th> | |
57 | <th>Implantation</th> | |
58 | <th>Famille Emploi</th> | |
59 | </tr> | |
60 | {% for d in comparaison_dossiers %} | |
61 | <tr> | |
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> | |
69 | </tr> | |
70 | {% endfor %} | |
71 | </tbody> | |
72 | </table> | |
73 | </fieldset> | |
74 | ||
75 | ||
76 | <div id="form-dossier"> | |
77 | {% comment %}Wrapper du formulaire de dossier{% endcomment %} | |
78 | {% include "dae/embauche-dossier-consulter.html" %} | |
79 | </div> | |
80 | ||
81 | <fieldset> | |
82 | <h2>Pièces jointes</h2> | |
83 | <p class="info">CV, lettre de motivation...</p> | |
84 | {% include "dae/pieces.html" %} | |
85 | </fieldset> | |
86 | ||
87 | <h2 class="section">SECTION 3 - COÛT GLOBAL</h2> | |
88 | ||
89 | <fieldset> | |
90 | ||
91 | {% if new %} | |
92 | <p> | |
93 | Vous devez enregister ce dossier avant de pouvoir détailler le | |
94 | coût global. | |
95 | </p> | |
96 | {% else %} | |
97 | <table cellspacing="0" id="global-cost"> | |
98 | {% include 'dae/embauche-remun.html' %} | |
99 | </table> | |
100 | ||
101 | <select id="type-remun" name="type-remun"> | |
102 | <option value="">(Ajouter une ligne)</option> | |
103 | {% for tr in type_remun %} | |
104 | <option value="{{ tr.id }}">{{ tr.nom }}</option> | |
105 | {% endfor %} | |
106 | </select> | |
107 | {% endif %} | |
108 | ||
109 | </fieldset> | |
110 | ||
111 | <h2 class="section">SECTION 4 - JUSTIFICATION DE LA DEMANDE (OBLIGATOIRE)</h2> | |
112 | <h3>A - Justification du poste</h3> | |
113 | <p>{{ poste.justification }}</p> | |
114 | ||
115 | <h3>B - Justification de l'employé</h3> | |
116 | <p class="info">Les questions posées pour la justification apparaîtront après avoir enregistré le dossier.</p> | |
117 | <table> | |
118 | <tr> | |
119 | <th>NOUVEL EMPLOYÉ</th> | |
120 | <th>RENOUVELLEMENT, PROLONGATION, RECLASSEMENT, MOBILITÉ INTERNE</th> | |
121 | </tr> | |
122 | <tr> | |
123 | <td> | |
124 | {% with justificationsNouveauForm as form %} | |
125 | {% include "dae/justifications.html" %} | |
126 | {% endwith %} | |
127 | </td> | |
128 | <td> | |
129 | {% with justificationsAutreForm as form %} | |
130 | {% include "dae/justifications.html" %} | |
131 | {% endwith %} | |
132 | </td> | |
133 | </tr> | |
134 | </table> | |
5d5a57a4 OL |
135 | {% endblock %} |
136 |