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