Commit | Line | Data |
---|---|---|
41318fe7 | 1 | <fieldset> |
c3be904d OL |
2 | <h2><label>Type d'intervention : </label>{{ poste.get_type_intervention_display }}</h2> |
3 | </fieldset> | |
4 | ||
5 | <fieldset> | |
41318fe7 OL |
6 | <h2>{{ poste.nom }} ({{ poste.implantation.nom }})</h2> |
7 | <table> | |
8 | <tbody> | |
9 | <tr> | |
10 | <th>Implantation</th> | |
11 | <td>{{ poste.implantation }}</td> | |
12 | </tr> | |
13 | <tr> | |
14 | <th>Type poste</th> | |
15 | <td>{{ poste.type_poste }}</td> | |
16 | </tr> | |
17 | <tr> | |
18 | <th>Service</th> | |
19 | <td>{{ poste.service }}</td> | |
20 | </tr> | |
21 | <tr> | |
22 | <th>Responsable</th> | |
23 | <td>{{ poste.responsable }}</td> | |
24 | </tr> | |
25 | </tbody> | |
26 | </table> | |
27 | </fieldset> | |
28 | ||
29 | <fieldset> | |
30 | <h2>Recrutement</h2> | |
31 | <table> | |
32 | <tbody> | |
33 | <tr> | |
34 | <th>Statut</th> | |
a6eadec5 OL |
35 | <td>Local : {% if poste.local %}oui{% else %}non{% endif %}</td> |
36 | <td>Expatrié : {% if poste.expatrie %}oui{% else %}non{% endif %} | |
37 | <td>Mise à disposition : {% if poste.mise_a_disposition %}oui{% else %}non{% endif %}</td> | |
41318fe7 OL |
38 | </tr> |
39 | <tr> | |
40 | <th>Appel</th> | |
a6eadec5 | 41 | <td colspan="3">{{ poste.appel }}</td> |
41318fe7 OL |
42 | </tr> |
43 | </tbody> | |
44 | </table> | |
45 | </fieldset> | |
46 | ||
47 | <fieldset> | |
48 | <h2>Durée prévue du poste </h2> | |
49 | <span class="info">Indépendamment du titulaire du poste</span> | |
50 | <table> | |
51 | <tbody> | |
52 | <tr> | |
53 | <th>Durée {% if not poste.date_fin %}indéterminée{% endif %}</th> | |
54 | {% if poste.date_fin %} | |
868a9322 | 55 | <td>du {{ poste.date_debut }} au {{ poste.date_fin }}</td> |
41318fe7 OL |
56 | {% else %} |
57 | <td>à partir du {{ poste.date_debut }}</td> | |
58 | {% endif %} | |
59 | </tr> | |
60 | <tr> | |
61 | <th>Régime travail</th> | |
868a9322 | 62 | <td>{{ poste.regime_travail }}%</td> |
41318fe7 OL |
63 | </tr> |
64 | <tr> | |
65 | <th>Nombre d'heure par semaine</th> | |
66 | <td>{{ poste.regime_travail_nb_heure_semaine }}H</td> | |
67 | </tr> | |
68 | ||
69 | </tbody> | |
70 | </table> | |
71 | </fieldset> | |
72 | ||
73 | <fieldset> | |
74 | <h2>Classement du poste</h2> | |
75 | <table id="classement"> | |
76 | <tbody> | |
77 | <tr> | |
78 | <th></th> | |
79 | <th>Échelon AUF</th> | |
80 | <th>Salaire de base</th> | |
bcc6fa3f OL |
81 | <th>Indem. d'expatriation</th> |
82 | <th>Indem. de fonction</th> | |
5f61bccb | 83 | <th>Charges patronales</th> |
41318fe7 OL |
84 | <th>Autres</th> |
85 | <th>TOTAL</th> | |
86 | <th>Taux > €</th> | |
bcc6fa3f | 87 | <th>EUR</th> |
41318fe7 OL |
88 | </tr> |
89 | <tr> | |
bcc6fa3f | 90 | <th>Min.</th> |
41318fe7 | 91 | <td>{{ poste.classement_min }}</td> |
5cbf3ffc | 92 | <td class="montant">{{ poste.salaire_min|floatformat:0 }} {{ poste.devise_min.code }}</td> |
5f61bccb OL |
93 | <td class="montant">{{ poste.indemn_expat_min|floatformat:0 }} {{ poste.devise_min.code }}</td> |
94 | <td class="montant">{{ poste.indemn_fct_min|floatformat:0 }} {{ poste.devise_min.code }}</td> | |
95 | <td class="montant">{{ poste.charges_patronales_min|floatformat:0 }} {{ poste.devise_min.code }}</td> | |
5cbf3ffc | 96 | <td class="montant">{{ poste.autre_min|floatformat:0 }} {{ poste.devise_min.code }}</td> |
01b761df | 97 | <td class="montant">{{ poste.get_couts_minimum|floatformat:0 }} {{ poste.devise_min.code }}</td> |
12c7f8a7 | 98 | <td>{{ poste.show_taux_minimum }}</td> |
bcc6fa3f | 99 | <td class="montant">{{ poste.show_couts_minimum_euros|floatformat:0 }}</td> |
41318fe7 OL |
100 | </tr> |
101 | <tr> | |
bcc6fa3f | 102 | <th>Max.</th> |
41318fe7 | 103 | <td>{{ poste.classement_max }}</td> |
5cbf3ffc | 104 | <td class="montant">{{ poste.salaire_max|floatformat:0 }} {{ poste.devise_max.code }}</td> |
5f61bccb OL |
105 | <td class="montant">{{ poste.indemn_expat_max|floatformat:0 }} {{ poste.devise_max.code }}</td> |
106 | <td class="montant">{{ poste.indemn_fct_max|floatformat:0 }} {{ poste.devise_max.code }}</td> | |
107 | <td class="montant">{{ poste.charges_patronales_max|floatformat:0 }} {{ poste.devise_max.code }}</td> | |
5cbf3ffc | 108 | <td class="montant">{{ poste.autre_max|floatformat:0 }} {{ poste.devise_max.code }}</td> |
01b761df | 109 | <td class="montant">{{ poste.get_couts_maximum|floatformat:0 }} {{ poste.devise_max.code }}</td> |
12c7f8a7 | 110 | <td>{{ poste.show_taux_maximum }}</td> |
bcc6fa3f | 111 | <td class="montant">{{ poste.show_couts_maximum_euros|floatformat:0 }}</td> |
41318fe7 OL |
112 | </tr> |
113 | </tbody> | |
114 | </table> | |
115 | ||
116 | <p class="info">N.B Conversion en EUROS au taux de change budgétaire</p> | |
117 | </fieldset> | |
118 | ||
119 | {% comment %}{% if new %}{% endcomment %} | |
120 | <fieldset> | |
068d1462 OL |
121 | <h2>Éléments de comparaison (externe)</h2> |
122 | {% if poste.est_comparable %} | |
41318fe7 OL |
123 | <table> |
124 | <tbody> | |
125 | <tr> | |
126 | <th>Devise</th> | |
127 | <td>{{ poste.devise_comparaison }}</td> | |
128 | </tr> | |
129 | </tbody> | |
130 | </table> | |
131 | <table id="elements-comparaison"> | |
132 | <tbody> | |
133 | <tr> | |
134 | <th></th> | |
135 | <th>Université</th> | |
136 | <th>Fonction publique</th> | |
137 | <th>Entreprise locale</th> | |
138 | <th>ONG</th> | |
139 | <th>Autre</th> | |
140 | </tr> | |
141 | <tr> | |
142 | <th>Minimum</th> | |
a3fee9c5 OL |
143 | <td> |
144 | {% if poste.comp_universite_min %} | |
145 | {{ poste.comp_universite_min|floatformat:0 }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 146 | ({{ poste.get_comp_universite_min_euros|floatformat:0 }} EUR) |
a3fee9c5 | 147 | {% endif %} |
41318fe7 | 148 | </td> |
a3fee9c5 OL |
149 | <td> |
150 | {% if poste.comp_fonctionpub_min %} | |
151 | {{ poste.comp_fonctionpub_min|floatformat:0 }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 152 | ({{ poste.get_comp_fonctionpub_min_euros|floatformat:0 }} EUR) |
a3fee9c5 | 153 | {% endif %} |
41318fe7 | 154 | </td> |
a3fee9c5 OL |
155 | <td> |
156 | {% if poste.comp_locale_min %} | |
157 | {{ poste.comp_locale_min|floatformat:0 }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 158 | ({{ poste.get_comp_locale_min_euros|floatformat:0 }} EUR) |
a3fee9c5 | 159 | {% endif %} |
41318fe7 | 160 | </td> |
a3fee9c5 OL |
161 | <td> |
162 | {% if poste.comp_ong_min %} | |
163 | {{ poste.comp_ong_min|floatformat:0 }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 164 | ({{ poste.get_comp_ong_min_euros|floatformat:0 }} EUR) |
a3fee9c5 | 165 | {% endif %} |
41318fe7 | 166 | </td> |
a3fee9c5 OL |
167 | <td> |
168 | {% if poste.comp_autre_min %} | |
169 | {{ poste.comp_autre_min|floatformat:0 }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 170 | ({{ poste.get_comp_autre_min_euros|floatformat:0 }} EUR) |
a3fee9c5 | 171 | {% endif %} |
41318fe7 OL |
172 | </td> |
173 | </tr> | |
174 | <tr> | |
175 | <th>Maximum</th> | |
a3fee9c5 OL |
176 | <td> |
177 | {% if poste.comp_universite_max %} | |
178 | {{ poste.comp_universite_max|floatformat:0 }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 179 | ({{ poste.get_comp_universite_max_euros|floatformat:0 }} EUR) |
a3fee9c5 | 180 | {% endif %} |
41318fe7 | 181 | </td> |
a3fee9c5 OL |
182 | <td> |
183 | {% if poste.comp_fonctionpub_max %} | |
184 | {{ poste.comp_fonctionpub_max|floatformat:0 }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 185 | ({{ poste.get_comp_fonctionpub_max_euros|floatformat:0 }} EUR) |
a3fee9c5 | 186 | {% endif %} |
41318fe7 | 187 | </td> |
a3fee9c5 OL |
188 | <td> |
189 | {% if poste.comp_locale_max %} | |
190 | {{ poste.comp_locale_max|floatformat:0 }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 191 | ({{ poste.get_comp_locale_max_euros|floatformat:0 }} EUR) |
a3fee9c5 | 192 | {% endif %} |
41318fe7 | 193 | </td> |
a3fee9c5 OL |
194 | <td> |
195 | {% if poste.comp_ong_max %} | |
196 | {{ poste.comp_ong_max|floatformat:0 }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 197 | ({{ poste.get_comp_ong_min_euros|floatformat:0 }} EUR) |
a3fee9c5 | 198 | {% endif %} |
41318fe7 | 199 | </td> |
a3fee9c5 OL |
200 | <td> |
201 | {% if poste.comp_autre_max %} | |
202 | {{ poste.comp_autre_max }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 203 | ({{ poste.get_comp_autre_max_euros|floatformat:0 }} EUR) |
a3fee9c5 | 204 | {% endif %} |
41318fe7 OL |
205 | </td> |
206 | </tr> | |
207 | </tbody> | |
208 | </table> | |
a3fee9c5 OL |
209 | {% else %} |
210 | <p>Il n'y a pas de comparaisons disponibles</p> | |
211 | {% endif %} | |
41318fe7 OL |
212 | </fieldset> |
213 | ||
214 | <fieldset> | |
068d1462 OL |
215 | <h2>Éléments de comparaison (interne)</h2> |
216 | {% if poste.comparaisons_internes.count > 0 %} | |
217 | <table> | |
218 | <tbody> | |
219 | <tr> | |
a42c20ef OL |
220 | <th>Classement</th> |
221 | <th>Statut</th> | |
068d1462 OL |
222 | <th>Poste</th> |
223 | <th>Implantation</th> | |
224 | <th>Montant</th> | |
225 | <th>EUR</th> | |
226 | </tr> | |
227 | {% for poste_connexe in poste.comparaisons_internes.all %} | |
228 | <tr> | |
a42c20ef OL |
229 | <td>{{ poste_connexe.classement }}</td> |
230 | <td>{{ poste_connexe.statut }}</td> | |
068d1462 OL |
231 | <td>{{ poste_connexe.nom }}</td> |
232 | <td>{{ poste_connexe.implantation }}</td> | |
1d0f4eef OL |
233 | <td>{{ poste_connexe.montant|floatformat:0 }} {{ poste_connexe.devise.code }}</td> |
234 | <td>{{ poste_connexe.montant_euros|floatformat:0 }} €</td> | |
068d1462 OL |
235 | </tr> |
236 | {% endfor %} | |
237 | </tbody> | |
238 | </table> | |
239 | {% else %} | |
240 | <p>Il n'y a pas de comparaisons disponibles</p> | |
241 | {% endif %} | |
242 | </fieldset> | |
243 | ||
244 | <fieldset> | |
41318fe7 OL |
245 | <h2>Pièces jointes</h2> |
246 | <ul> | |
247 | {% for pj in poste.postepiece_set.all %} | |
248 | <li><a href="{{ pj.fichier.url }}">{{ pj.nom }}</a></li> | |
249 | {% endfor %} | |
250 | </ul> | |
251 | </fieldset> | |
252 | ||
253 | <fieldset> | |
254 | <h2>Financement</h2> | |
255 | {% for f in poste.financements.all %} | |
256 | <li>{{ f }}</li> | |
257 | {% endfor %} | |
258 | </fieldset> | |
259 | ||
260 | <fieldset> | |
261 | <h2>Justification de la demande</h2> | |
262 | <div>{{ poste.justification|linebreaks }}</div> | |
263 | </fieldset> | |
264 |