Commit | Line | Data |
---|---|---|
67a94eaf | 1 | {% load dae %} |
3a33b1ce OL |
2 | <html> |
3 | ||
4 | <head> | |
5 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/pdf.css" /> | |
6 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/dae.css" /> | |
7 | <style>{{ css }}</style> | |
8 | </head> | |
9 | ||
10 | <body> | |
47560eb5 | 11 | <h1>Demande d'autorisation d'engagement de personnel</h1> |
3a33b1ce OL |
12 | |
13 | <h2 class="section">SECTION 1 - POSTE</h2> | |
14 | {% with dossier.poste as poste %} | |
15 | {% include 'dae/poste_resume.html' %} | |
16 | {% endwith %} | |
17 | ||
18 | <h2 class="section">SECTION 2 - PERSONNEL ENGAGÉ</h2> | |
19 | <fieldset> | |
20 | <div> | |
21 | <div class="gauche"><h2>Personne</h2></div> | |
22 | <div class="droite"> | |
23 | <table class="droite"> | |
24 | <tbody> | |
25 | <tr> | |
26 | <th>Mobilité interne</th> | |
27 | <td colspan="3">{% if dossier.mobilite_interne %}oui{% else %}non{% endif %} | |
28 | </tr> | |
29 | </tbody> | |
30 | </table> | |
31 | </div> | |
32 | </div> | |
33 | <div class="clear"></div> | |
34 | <table id="form-employe"> | |
35 | <tbody> | |
36 | <tr> | |
37 | <th>Employé</th> | |
38 | <td>{{ dossier.employe }}</td> | |
39 | </tr> | |
40 | </tbody> | |
41 | </table> | |
42 | ||
43 | </fieldset> | |
44 | ||
45 | <fieldset> | |
46 | <h2>Comparaison salariale</h2> | |
47 | <span class="info">dans la région pour les employés occupant un poste similaire</span> | |
48 | <table> | |
49 | <tbody> | |
50 | <tr> | |
51 | <th>Implantation</th> | |
52 | <th>Employé</th> | |
53 | <th>Poste</th> | |
54 | <th>Salaire</th> | |
55 | <th>Salaire EUR</th> | |
56 | </tr> | |
57 | {% for dc in dossier.comparaisons.all %} | |
58 | <tr> | |
59 | <td>{{ dc.implantation }}</td> | |
60 | <td>{{ dc.personne }}</td> | |
61 | <td>{{ dc.poste }}</td> | |
62 | <td>{{ dc.montant }} {{ dc.devise }}</td> | |
63 | <td>{{ dc.montant_euros }} EUR</td> | |
64 | </tr> | |
65 | {% endfor %} | |
66 | </tbody> | |
67 | </table> | |
68 | </fieldset> | |
69 | ||
70 | ||
71 | <div id="form-dossier"> | |
72 | {% comment %}Wrapper du formulaire de dossier{% endcomment %} | |
73 | {% include "dae/embauche-dossier-consulter.html" %} | |
74 | </div> | |
75 | ||
76 | <fieldset> | |
77 | <h2>Pièces jointes</h2> | |
78 | <ul> | |
79 | {% for pj in dossier.dossierpiece_set.all %} | |
67a94eaf | 80 | <li><a href="{% url dossier_piece pj.id pj.fichier.name|basename %}">{{ pj.nom }}</a></li> |
3a33b1ce OL |
81 | {% endfor %} |
82 | </ul> | |
83 | ||
84 | </fieldset> | |
85 | ||
86 | <h2 class="section">SECTION 3 - COÛT GLOBAL</h2> | |
87 | ||
88 | <fieldset> | |
89 | <table cellspacing="0" id="global-cost"> | |
90 | {% include 'dae/embauche-remun-consulter.html' %} | |
91 | </table> | |
92 | </fieldset> | |
93 | ||
94 | <h2 class="section">SECTION 4 - JUSTIFICATION DE LA DEMANDE (OBLIGATOIRE)</h2> | |
95 | <h3>A - Justification du poste</h3> | |
96 | <p>{{ poste.justification }}</p> | |
97 | ||
98 | <h3>B - Justification de l'employé</h3> | |
3a33b1ce | 99 | <table> |
29dffede OL |
100 | <tr> |
101 | <th>Nouvel employé</th> | |
102 | <th>Renouvellement, prolongation, reclassement, mobilité interne</th> | |
103 | </tr> | |
104 | <tr> | |
105 | <td> | |
106 | <h4>{{ dossier.justif_nouveau_statut_label }}</h4> | |
107 | {{ dossier.justif_nouveau_statut|default:"∅" }} | |
108 | <h4>{{ dossier.justif_nouveau_tmp_remplacement_label }}</h4> | |
109 | {{ dossier.justif_nouveau_tmp_remplacement|default:"∅" }} | |
110 | <h4>{{ dossier.justif_nouveau_salaire_label }}</h4> | |
111 | {{ dossier.justif_nouveau_salaire|default:"∅" }} | |
112 | <h4>{{ dossier.justif_nouveau_commentaire_label }}</h4> | |
113 | {{ dossier.justif_nouveau_commentaire|default:"∅" }} | |
114 | </td> | |
115 | <td> | |
116 | <h4>{{ dossier.justif_rempl_type_contrat_label }}</h4> | |
117 | {{ dossier.justif_rempl_type_contrat|default:"∅"}} | |
118 | <h4>{{ dossier.justif_rempl_statut_employe_label }}</h4> | |
119 | {{ dossier.justif_rempl_statut_employe|default:"∅"}} | |
120 | <h4>{{ dossier.justif_rempl_evaluation_label }}</h4> | |
121 | {{ dossier.justif_rempl_evaluation|default:"∅"}} | |
122 | <h4>{{ dossier.justif_rempl_salaire_label }}</h4> | |
123 | {{ dossier.justif_rempl_salaire|default:"∅" }} | |
124 | <h4>{{ dossier.justif_rempl_commentaire_label }}</h4> | |
125 | {{ dossier.justif_rempl_commentaire|default:"∅" }} | |
126 | </td> | |
127 | </tr> | |
3a33b1ce OL |
128 | </table> |
129 | ||
130 | <fieldset> | |
dcaf1398 | 131 | <h2>Validations</h2> |
3a33b1ce | 132 | |
dcaf1398 OL |
133 | <table> |
134 | <tr> | |
135 | <th>Action</th> | |
136 | <th>Commentaire</th> | |
137 | </tr> | |
3a33b1ce | 138 | {% for commentaire in dossier.historique_desc %} |
dcaf1398 | 139 | {% include "dae/ligne_validation.html" %} |
3a33b1ce | 140 | {% endfor %} |
dcaf1398 | 141 | </table> |
3a33b1ce OL |
142 | </fieldset> |
143 | ||
144 | <fieldset> | |
145 | <h2>Signatures</h2> | |
146 | ||
147 | <p class="signature"> ____________________________________________________________</p> | |
148 | <p class="signature"> ____________________________________________________________</p> | |
149 | <p class="signature"> ____________________________________________________________</p> | |
150 | </fieldset> | |
151 | ||
152 | </body> | |
153 | </html> |