Commit | Line | Data |
---|---|---|
5d680e84 | 1 | {% extends 'base.html' %} |
e88caaf0 | 2 | {% load adminmedia %} |
37bf2d05 | 3 | |
e8e75458 | 4 | {% block title %}RH - DAE - Poste{% endblock %} |
5efcd48e | 5 | {% block sous_titre %} |
6 | Demande d'autorisation d'embauche | |
7 | {% endblock %} | |
498881f4 | 8 | |
37bf2d05 | 9 | {% block extrahead %} |
703e5cfb NC |
10 | <script src="{{ MEDIA_URL }}js/jquery-1.5.1.min.js" |
11 | type="text/javascript"></script> | |
12 | <script src="{{ MEDIA_URL }}js/jquery-ui-1.8.11.custom.min.js" | |
13 | type="text/javascript"></script> | |
e88caaf0 OL |
14 | |
15 | {% comment %} style pour le calendier {% endcomment %} | |
16 | <script type="text/javascript"> | |
17 | window.__admin_media_prefix__ = "{% filter escapejs %}{% admin_media_prefix %}{% endfilter %}"; | |
18 | </script> | |
19 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/calendrier.css" /> | |
680db452 | 20 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/dae.css" /> |
3121c13c | 21 | |
e88caaf0 OL |
22 | <script type="text/javascript" src="/admin/jsi18n/"></script> |
23 | <script type="text/javascript" src="{% admin_media_prefix %}js/core.js"></script> | |
24 | ||
25 | {{ form.media }} | |
26 | ||
3121c13c OL |
27 | <script src="{{ MEDIA_URL }}jquery-autocomplete/jquery.autocomplete.js" type="text/javascript"></script> |
28 | <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}jquery-autocomplete/jquery.autocomplete.css" /> | |
29 | ||
30 | ||
f87fe1a1 | 31 | <script src="{{ MEDIA_URL }}js/dae.js" /></script> |
25410b22 | 32 | <script src="{{ MEDIA_URL }}js/dae-poste.js" /></script> |
f87fe1a1 | 33 | |
37bf2d05 NC |
34 | {% endblock %} |
35 | ||
37bf2d05 | 36 | {% block main %} |
498881f4 | 37 | <h1>Demande d'autorisation de création de poste</h1> |
38 | ||
36341125 | 39 | <form action="" method="post" enctype="multipart/form-data"> |
8fa94e8b | 40 | |
c3be904d OL |
41 | <div id="type_intervention">{{ form.type_intervention }}</div> |
42 | ||
43 | <div class="clear"></div> | |
44 | ||
5efcd48e | 45 | <fieldset> |
46 | <h2> | |
47 | {% if new %} | |
48 | Nouveau poste | |
49 | {% else %} | |
50 | Poste existant : {{ poste.nom }} ({{ poste.implantation.nom }}) | |
51 | {% endif %} | |
52 | </h2> | |
c3be904d | 53 | |
5efcd48e | 54 | <table> |
55 | <tbody> | |
56 | <tr> | |
6d047148 OL |
57 | <th>{{ form.implantation.label_tag }} :<br />{{ form.implantation.errors }}</th> |
58 | <td>{{ form.implantation }}</td> | |
59 | </tr> | |
60 | <tr> | |
5efcd48e | 61 | <th>{{ form.poste.label_tag }} :<br />{{ form.poste.errors }}</th> |
4bce4d24 | 62 | <td>{{ form.poste }} <span class="info">Au changement de ce menu, la page va être rechargée.</span></td> |
5efcd48e | 63 | </tr> |
64 | <tr> | |
65 | <th>{{ form.nom.label_tag }} :<br />{{ form.nom.errors }}</th> | |
66 | <td>{{ form.nom }}</td> | |
67 | </tr> | |
68 | <tr> | |
69 | <th>{{ form.type_poste.label_tag }} :<br />{{ form.type_poste.errors }}</th> | |
70 | <td>{{ form.type_poste }}</td> | |
71 | </tr> | |
72 | <tr> | |
5efcd48e | 73 | <th>{{ form.service.label_tag }} :<br />{{ form.service.errors }}</th> |
74 | <td>{{ form.service }}</td> | |
75 | </tr> | |
76 | <tr> | |
77 | <th>{{ form.responsable.label_tag }} :<br />{{ form.responsable.errors }}</th> | |
680db452 OL |
78 | <td> |
79 | <span class="info">Recherche intelligente : vous pouvez tapez le nom du poste, ou encore la dernière qui occupe celui-ci. Assurez-vous que le poste de responsable choisi dans la liste est reporté en dessous du champs de recherche, cela signifie qu'il est sélectionné.</span> | |
80 | {{ form.responsable }} | |
81 | </td> | |
5efcd48e | 82 | </tr> |
83 | </tbody> | |
84 | </table> | |
85 | </fieldset> | |
d949462d | 86 | |
5efcd48e | 87 | <fieldset> |
88 | <h2>Recrutement</h2> | |
89 | <table> | |
90 | <tbody> | |
91 | <tr> | |
154677c3 | 92 | <th>Statut :<br />{{ form.local.errors }} {{ form.expatrie.errors }}</th> |
5efcd48e | 93 | <td> |
94 | <span class="row"> | |
154677c3 | 95 | {{ form.local.label_tag }} {{ form.local }} {{ form.expatrie.label_tag }} {{ form.expatrie }} |
5efcd48e | 96 | {{ form.mise_a_disposition.label_tag }} |
97 | {{ form.mise_a_disposition.errors }} | |
98 | {{ form.mise_a_disposition }} | |
99 | </span> | |
100 | </td> | |
101 | </tr> | |
102 | <tr> | |
103 | <th>{{ form.appel.label_tag }} :<br />{{ form.appel.errors }}</th> | |
104 | <td> | |
105 | <span class="row"> | |
106 | {{ form.appel }} | |
107 | </span> | |
108 | </td> | |
109 | </tr> | |
110 | </tbody> | |
111 | </table> | |
112 | </fieldset> | |
d949462d | 113 | |
5efcd48e | 114 | <fieldset> |
115 | <h2>Durée prévue du poste </h2> | |
9fb2ccd9 | 116 | <span class="info">Indépendamment du titulaire du poste</span> |
5efcd48e | 117 | <table> |
118 | <tbody> | |
119 | <tr> | |
120 | <th rowspan="2">Durée :</th> | |
121 | <td>du</td> | |
122 | <td> | |
123 | {{ form.date_debut }}<br /> | |
124 | <span class="info">({{form.date_debut.help_text }})</span><br /> | |
125 | {{ form.date_debut.errors }} | |
126 | </td> | |
127 | <td> au </td> | |
128 | <td> | |
129 | {{ form.date_fin }}<br /> | |
130 | <span class="info">({{form.date_fin.help_text }})</span><br /> | |
131 | {{ form.date_fin.errors }} | |
132 | </td> | |
5efcd48e | 133 | <th>{{ form.regime_travail.label_tag }} :<br />{{ form.regime_travail.errors }}</th> |
134 | <td colspan="4"> | |
135 | {{ form.regime_travail }} | |
136 | <span class="info">{{ form.regime_travail.help_text }}</span> | |
ce110fb9 | 137 | </td> |
0f23302a | 138 | </tr> |
5efcd48e | 139 | <tr> |
4d25e2ba | 140 | <td colspan="4" class="info"> |
01191cd0 | 141 | <p id="note-duree">Pour une durée indéterminée, spécifier uniquement la date de début.</p> |
4d25e2ba | 142 | </td> |
5efcd48e | 143 | <th> |
144 | {{ form.regime_travail_nb_heure_semaine.label_tag }} :<br /> | |
145 | {{ form.regime_travail_nb_heure_semaine.errors }} | |
146 | </th> | |
4d25e2ba | 147 | <td>{{ form.regime_travail_nb_heure_semaine }}</td> |
5efcd48e | 148 | </tr> |
149 | </tbody> | |
0f23302a | 150 | </table> |
5efcd48e | 151 | </fieldset> |
0f23302a | 152 | |
5efcd48e | 153 | <fieldset> |
154 | <h2>Classement du poste</h2> | |
f87fe1a1 | 155 | <table id="classement"> |
5efcd48e | 156 | <tbody> |
157 | <tr> | |
158 | <th></th> | |
159 | <th>Échelon AUF</th> | |
160 | <th>Valeur du point</th> | |
3d627bfd | 161 | <th>Devise</th> |
162 | <th colspan="2">Salaire de base</th> | |
5f61bccb OL |
163 | <th colspan="2">Indemnités d'expatriation</th> |
164 | <th colspan="2">Indemnités de fonction</th> | |
165 | <th colspan="2">Charges patronales</th> | |
3d627bfd | 166 | <th colspan="2">Autres</th> |
167 | <th colspan="2">TOTAL</th> | |
8e30e17f | 168 | <th>Taux > €</th> |
3d627bfd | 169 | <th colspan="2">Conversion EUR</th> |
5efcd48e | 170 | </tr> |
171 | <tr> | |
172 | <th>Minimum</th> | |
17353922 OL |
173 | <td> |
174 | {{ form.classement_min }} | |
175 | {{ form.classement_min.errors }} | |
176 | </td> | |
177 | <td> | |
86f1e48d | 178 | {{ form.valeur_point_min }} |
5efcd48e | 179 | {{ form.valeur_point_min.errors }} |
180 | </td> | |
3d627bfd | 181 | <td> |
182 | {{ form.devise_min }} | |
183 | {{ form.devise_min.errors }} | |
184 | </td> | |
63437606 | 185 | <td> |
186 | {{ form.salaire_min }} | |
187 | {{ form.salaire_min.errors }} | |
188 | </td> | |
f87fe1a1 | 189 | <td><span class="devise_code">EUR</span></td> |
5f61bccb OL |
190 | <td>{{ form.indemn_expat_min }} {{ form.indemn_expat_min.errors }}</td> |
191 | <td><span class="devise_code">EUR</span></td> | |
192 | <td>{{ form.indemn_fct_min }} {{ form.indemn_fct_min.errors }}</td> | |
193 | <td><span class="devise_code">EUR</span></td> | |
194 | <td>{{ form.charges_patronales_min }} {{ form.charges_patronales_min.errors }}</td> | |
f87fe1a1 | 195 | <td><span class="devise_code">EUR</span></td> |
12c7f8a7 | 196 | <td>{{ form.autre_min }} {{ form.autre_min.errors }}</td> |
f87fe1a1 OL |
197 | <td><span class="devise_code">EUR</span></td> |
198 | <td id="total_min" class="total-devise cell-nombre">0.00</td> | |
199 | <td><span class="devise_code">EUR</span></td> | |
200 | <td class="taux">1</td> | |
201 | <td id="total_min_euro" class="total-euro cell-nombre">0.00</td> | |
3d627bfd | 202 | <td>€</td> |
0f23302a | 203 | </tr> |
204 | <tr> | |
5efcd48e | 205 | <th>Maximun</th> |
17353922 OL |
206 | <td> |
207 | {{ form.classement_max }} | |
208 | {{ form.classement_max.errors }} | |
209 | </td> | |
210 | <td> | |
86f1e48d | 211 | {{ form.valeur_point_max }} |
5efcd48e | 212 | {{ form.valeur_point_max.errors }} |
ce110fb9 | 213 | </td> |
3d627bfd | 214 | <td> |
215 | {{ form.devise_max }} | |
216 | {{ form.devise_max.errors }} | |
217 | </td> | |
63437606 | 218 | <td> |
219 | {{ form.salaire_max }} | |
220 | {{ form.salaire_max.errors }} | |
221 | </td> | |
f87fe1a1 | 222 | <td><span class="devise_code">EUR</span></td> |
5f61bccb OL |
223 | <td>{{ form.indemn_expat_max }} {{ form.indemn_expat_max.errors }}</td> |
224 | <td><span class="devise_code">EUR</span></td> | |
225 | <td>{{ form.indemn_fct_max }} {{ form.indemn_fct_max.errors }}</td> | |
226 | <td><span class="devise_code">EUR</span></td> | |
227 | <td>{{ form.charges_patronales_max }} {{ form.charges_patronales_max.errors }}</td> | |
f87fe1a1 | 228 | <td><span class="devise_code">EUR</span></td> |
12c7f8a7 | 229 | <td>{{ form.autre_max }} {{ form.autre_max.errors }}</td> |
f87fe1a1 OL |
230 | <td><span class="devise_code">EUR</span></td> |
231 | <td id="total_max" class="total-devise cell-nombre">0.00</td> | |
232 | <td><span class="devise_code">EUR</span></td> | |
233 | <td class="taux">1</td> | |
234 | <td id="total_max_euro" class="total-euro cell-nombre">0.00</td> | |
3d627bfd | 235 | <td>€</td> |
ce110fb9 | 236 | </tr> |
5efcd48e | 237 | </tbody> |
0f23302a | 238 | </table> |
ce110fb9 | 239 | |
0f23302a | 240 | <p class="info">N.B Conversion en EUROS au taux de change budgétaire</p> |
5efcd48e | 241 | </fieldset> |
242 | ||
63437606 | 243 | {% comment %}{% if new %}{% endcomment %} |
5efcd48e | 244 | <fieldset> |
068d1462 | 245 | <h2>Éléments de comparaison (externe)</h2> |
355c80c8 | 246 | <span class="info">Compléter uniquement lors de la création d'un poste</span> |
5efcd48e | 247 | <table> |
248 | <tbody> | |
249 | <tr> | |
a3508c67 | 250 | <th>Devise</th> |
251 | <td> | |
252 | {{ form.devise_comparaison }} | |
253 | {{ form.devise_comparaison.errors }} | |
254 | </td> | |
255 | </tr> | |
256 | </tbody> | |
257 | </table> | |
72b571f4 | 258 | <table id="elements-comparaison"> |
a3508c67 | 259 | <tbody> |
260 | <tr> | |
5efcd48e | 261 | <th></th> |
72b571f4 OL |
262 | <th>Université</th> |
263 | <th>Fonction publique</th> | |
264 | <th>Entreprise locale</th> | |
265 | <th>ONG</th> | |
266 | <th>Autre</th> | |
5efcd48e | 267 | </tr> |
268 | <tr> | |
269 | <th>Minimum</th> | |
72b571f4 OL |
270 | <td>{{ form.comp_universite_min }}<span class="devise"></span> (<span class="devise_euro"></span>)</td> |
271 | <td>{{ form.comp_fonctionpub_min }}<span class="devise"></span> (<span class="devise_euro"></span>)</td> | |
272 | <td>{{ form.comp_locale_min }}<span class="devise"></span> (<span class="devise_euro"></span>)</td> | |
273 | <td>{{ form.comp_ong_min }}<span class="devise"></span> (<span class="devise_euro"></span>)</td> | |
274 | <td>{{ form.comp_autre_min }}<span class="devise"></span> (<span class="devise_euro"></span>)</td> | |
5efcd48e | 275 | </tr> |
276 | <tr> | |
277 | <th>Maximum</th> | |
72b571f4 OL |
278 | <td>{{ form.comp_universite_max }}<span class="devise"></span> (<span class="devise_euro"></span>)</td> |
279 | <td>{{ form.comp_fonctionpub_max }}<span class="devise"></span> (<span class="devise_euro"></span>)</td> | |
280 | <td>{{ form.comp_locale_max }}<span class="devise"></span> (<span class="devise_euro"></span>)</td> | |
281 | <td>{{ form.comp_ong_max }}<span class="devise"></span> (<span class="devise_euro"></span>)</td> | |
282 | <td>{{ form.comp_autre_max }}<span class="devise"></span> (<span class="devise_euro"></span>)</td> | |
5efcd48e | 283 | </tr> |
284 | </tbody> | |
285 | </table> | |
5efcd48e | 286 | </fieldset> |
068d1462 OL |
287 | |
288 | <fieldset> | |
289 | <h2>Éléments de comparaison (interne)</h2> | |
290 | {% for f in postesComparaisonsForm.management_form %} | |
291 | {{ f }} | |
292 | {% endfor %} | |
293 | ||
294 | {% for f in postesComparaisonsForm.forms %} | |
295 | <table> | |
296 | {% for field in f %} | |
297 | {% if field.is_hidden %}{{ field }}{% endif %} | |
298 | {% endfor %} | |
299 | ||
a03c8b3a | 300 | <tr class="comparaison-interne"><td colspan=2>Rechercher un poste : {{ f.recherche }}</td></tr> |
068d1462 OL |
301 | <tr><th>{{ f.implantation.label }}</th><td>{{ f.implantation.errors }} {{ f.implantation }}</td></tr> |
302 | <tr><th>{{ f.nom.label }}</th><td>{{ f.nom.errors }} {{ f.nom }}</td></tr> | |
303 | <tr><th>{{ f.montant.label }} ({{f.devise.label }})</th><td>{{ f.montant.errors }} {{ f.montant }} {{ f.devise.errors }} {{f.devise }} ({{ f.montant_euros.errors }} {{ f.montant_euros }} EUR)</td></tr> | |
304 | </table> | |
305 | {% endfor %} | |
306 | </fieldset> | |
63437606 | 307 | {% comment %}{% endif %}{% endcomment %} |
ce110fb9 | 308 | |
36341125 OL |
309 | <fieldset> |
310 | <h2>Pièces jointes</h2> | |
311 | <p class="info">Compléter uniquement lors de la création d'un poste</p> | |
d766bf2c | 312 | {% include "dae/pieces.html" %} |
36341125 | 313 | </fieldset> |
8fa94e8b | 314 | |
5efcd48e | 315 | <fieldset> |
316 | <h2>Financement</h2> | |
e2185d45 | 317 | <span class="info">Si vous avez plus de 2 financements, cliquer sur 'sauvegarder et continuer' lorsque que le formulaire sera complété. Une nouvelle ligne de financement sera alors disponible.</span> |
151e7bd0 | 318 | {% include "dae/financements.html" %} |
5efcd48e | 319 | </fieldset> |
703e5cfb | 320 | |
2e092e0c OL |
321 | <fieldset> |
322 | <h2>Justification de la demande</h2> | |
323 | <span class="info">La justification est obligatoire pour la création et le renouvellement d'un poste</span> | |
324 | <br /><br /> | |
325 | <div> | |
326 | {{ form.justification.errors }} | |
327 | {{ form.justification }} | |
328 | </div> | |
329 | </fieldset> | |
330 | ||
6147b497 | 331 | <input type="submit" name="continue" value="Sauvegarder (et ajouter des lignes)" /> |
151e7bd0 | 332 | <input type="submit" name="save" value="Sauvegarder" /> |
a3508c67 | 333 | |
151e7bd0 | 334 | </form> |
a3508c67 | 335 | |
5d680e84 | 336 | {% endblock %} |