Commit | Line | Data |
---|---|---|
41318fe7 OL |
1 | <fieldset> |
2 | <h2>{{ poste.nom }} ({{ poste.implantation.nom }})</h2> | |
3 | <table> | |
4 | <tbody> | |
5 | <tr> | |
6 | <th>Implantation</th> | |
7 | <td>{{ poste.implantation }}</td> | |
8 | </tr> | |
9 | <tr> | |
10 | <th>Type poste</th> | |
11 | <td>{{ poste.type_poste }}</td> | |
12 | </tr> | |
13 | <tr> | |
14 | <th>Service</th> | |
15 | <td>{{ poste.service }}</td> | |
16 | </tr> | |
17 | <tr> | |
18 | <th>Responsable</th> | |
19 | <td>{{ poste.responsable }}</td> | |
20 | </tr> | |
21 | </tbody> | |
22 | </table> | |
23 | </fieldset> | |
24 | ||
25 | <fieldset> | |
26 | <h2>Recrutement</h2> | |
27 | <table> | |
28 | <tbody> | |
29 | <tr> | |
30 | <th>Statut</th> | |
31 | <th>local</th><td>{% if poste.local %}oui{% else %}non{% endif %}</td> | |
32 | <th>expatrié</th><td>{% if poste.expatrie %}oui{% else %}non{% endif %}</td> | |
33 | <th>mise à disposition</th><td>{% if poste.mise_a_disposition %}oui{% else %}non{% endif %}</td> | |
34 | </tr> | |
35 | <tr> | |
36 | <th>Appel</th> | |
37 | <td colspan="6">{{ poste.appel }}</td> | |
38 | </tr> | |
39 | </tbody> | |
40 | </table> | |
41 | </fieldset> | |
42 | ||
43 | <fieldset> | |
44 | <h2>Durée prévue du poste </h2> | |
45 | <span class="info">Indépendamment du titulaire du poste</span> | |
46 | <table> | |
47 | <tbody> | |
48 | <tr> | |
49 | <th>Durée {% if not poste.date_fin %}indéterminée{% endif %}</th> | |
50 | {% if poste.date_fin %} | |
51 | <td>du {{ poste.date_debut }}</td> | |
52 | <td>au {{ poste.date_fin }}</td> | |
53 | {% else %} | |
54 | <td>à partir du {{ poste.date_debut }}</td> | |
55 | {% endif %} | |
56 | </tr> | |
57 | <tr> | |
58 | <th>Régime travail</th> | |
59 | <td colspan="4">{{ poste.regime_travail }}%</td> | |
60 | </tr> | |
61 | <tr> | |
62 | <th>Nombre d'heure par semaine</th> | |
63 | <td>{{ poste.regime_travail_nb_heure_semaine }}H</td> | |
64 | </tr> | |
65 | ||
66 | </tbody> | |
67 | </table> | |
68 | </fieldset> | |
69 | ||
70 | <fieldset> | |
71 | <h2>Classement du poste</h2> | |
72 | <table id="classement"> | |
73 | <tbody> | |
74 | <tr> | |
75 | <th></th> | |
76 | <th>Échelon AUF</th> | |
77 | <th>Salaire de base</th> | |
78 | <th>Indemnité, responsabilité (le cas échéant)</th> | |
79 | <th>Autres</th> | |
80 | <th>TOTAL</th> | |
81 | <th>Taux > €</th> | |
82 | <th>Conversion EUR</th> | |
83 | </tr> | |
84 | <tr> | |
85 | <th>Minimum</th> | |
86 | <td>{{ poste.classement_min }}</td> | |
5cbf3ffc OL |
87 | <td class="montant">{{ poste.salaire_min|floatformat:0 }} {{ poste.devise_min.code }}</td> |
88 | <td class="montant">{{ poste.indemn_min|floatformat:0 }} {{ poste.devise_min.code }}</td> | |
89 | <td class="montant">{{ poste.autre_min|floatformat:0 }} {{ poste.devise_min.code }}</td> | |
90 | <td class="montant">{{ poste.get_couts_minimum|floatformat:0 }} {{ poste.devise_min.code }}</td> | |
41318fe7 | 91 | <td>{{ poste.get_taux_minimum }}</td> |
5cbf3ffc | 92 | <td class="montant">{{ poste.get_couts_minimum_euros|floatformat:0 }} EUR</td> |
41318fe7 OL |
93 | </tr> |
94 | <tr> | |
95 | <th>Maximum</th> | |
96 | <td>{{ poste.classement_max }}</td> | |
5cbf3ffc OL |
97 | <td class="montant">{{ poste.salaire_max|floatformat:0 }} {{ poste.devise_max.code }}</td> |
98 | <td class="montant">{{ poste.indemn_max|floatformat:0 }} {{ poste.devise_max.code }}</td> | |
99 | <td class="montant">{{ poste.autre_max|floatformat:0 }} {{ poste.devise_max.code }}</td> | |
100 | <td class="montant">{{ poste.get_couts_maximum|floatformat:0 }} {{ poste.devise_max.code }}</td> | |
41318fe7 | 101 | <td>{{ poste.get_taux_maximum }}</td> |
5cbf3ffc | 102 | <td class="montant">{{ poste.get_couts_maximum_euros|floatformat:0 }} EUR</td> |
41318fe7 OL |
103 | </tr> |
104 | </tbody> | |
105 | </table> | |
106 | ||
107 | <p class="info">N.B Conversion en EUROS au taux de change budgétaire</p> | |
108 | </fieldset> | |
109 | ||
110 | {% comment %}{% if new %}{% endcomment %} | |
111 | <fieldset> | |
112 | <h2>Éléments de comparaison</h2> | |
113 | <span class="info">Compléter uniquement lors de la création d'un poste</span> | |
114 | <table> | |
115 | <tbody> | |
116 | <tr> | |
117 | <th>Devise</th> | |
118 | <td>{{ poste.devise_comparaison }}</td> | |
119 | </tr> | |
120 | </tbody> | |
121 | </table> | |
122 | <table id="elements-comparaison"> | |
123 | <tbody> | |
124 | <tr> | |
125 | <th></th> | |
126 | <th>Université</th> | |
127 | <th>Fonction publique</th> | |
128 | <th>Entreprise locale</th> | |
129 | <th>ONG</th> | |
130 | <th>Autre</th> | |
131 | </tr> | |
132 | <tr> | |
133 | <th>Minimum</th> | |
5cbf3ffc OL |
134 | <td>{{ poste.comp_universite_min|floatformat:0 }} {{ poste.devise_comparaison.code }} |
135 | ({{ poste.get_comp_universite_min_euros|floatformat:0 }} EUR) | |
41318fe7 | 136 | </td> |
5cbf3ffc OL |
137 | <td>{{ poste.comp_fonctionpub_min|floatformat:0 }} {{ poste.devise_comparaison.code }} |
138 | ({{ poste.get_comp_fonctionpub_min_euros|floatformat:0 }} EUR) | |
41318fe7 | 139 | </td> |
5cbf3ffc OL |
140 | <td>{{ poste.comp_locale_min|floatformat:0 }} {{ poste.devise_comparaison.code }} |
141 | ({{ poste.get_comp_locale_min_euros|floatformat:0 }} EUR) | |
41318fe7 | 142 | </td> |
5cbf3ffc OL |
143 | <td>{{ poste.comp_ong_min|floatformat:0 }} {{ poste.devise_comparaison.code }} |
144 | ({{ poste.get_comp_ong_min_euros|floatformat:0 }} EUR) | |
41318fe7 | 145 | </td> |
5cbf3ffc OL |
146 | <td>{{ poste.comp_autre_min|floatformat:0 }} {{ poste.devise_comparaison.code }} |
147 | ({{ poste.get_comp_autre_min_euros|floatformat:0 }} EUR) | |
41318fe7 OL |
148 | </td> |
149 | </tr> | |
150 | <tr> | |
151 | <th>Maximum</th> | |
152 | <td>{{ poste.comp_universite_max }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 153 | ({{ poste.get_comp_universite_max_euros|floatformat:0 }} EUR) |
41318fe7 OL |
154 | </td> |
155 | <td>{{ poste.comp_fonctionpub_max }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 156 | ({{ poste.get_comp_fonctionpub_max_euros|floatformat:0 }} EUR) |
41318fe7 OL |
157 | </td> |
158 | <td>{{ poste.comp_locale_max }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 159 | ({{ poste.get_comp_locale_max_euros|floatformat:0 }} EUR) |
41318fe7 OL |
160 | </td> |
161 | <td>{{ poste.comp_ong_max }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 162 | ({{ poste.get_comp_ong_min_euros|floatformat:0 }} EUR) |
41318fe7 OL |
163 | </td> |
164 | <td>{{ poste.comp_autre_max }} {{ poste.devise_comparaison.code }} | |
5cbf3ffc | 165 | ({{ poste.get_comp_autre_max_euros|floatformat:0 }} EUR) |
41318fe7 OL |
166 | </td> |
167 | </tr> | |
168 | </tbody> | |
169 | </table> | |
170 | </fieldset> | |
171 | ||
172 | <fieldset> | |
173 | <h2>Pièces jointes</h2> | |
174 | <ul> | |
175 | {% for pj in poste.postepiece_set.all %} | |
176 | <li><a href="{{ pj.fichier.url }}">{{ pj.nom }}</a></li> | |
177 | {% endfor %} | |
178 | </ul> | |
179 | </fieldset> | |
180 | ||
181 | <fieldset> | |
182 | <h2>Financement</h2> | |
183 | {% for f in poste.financements.all %} | |
184 | <li>{{ f }}</li> | |
185 | {% endfor %} | |
186 | </fieldset> | |
187 | ||
188 | <fieldset> | |
189 | <h2>Justification de la demande</h2> | |
190 | <div>{{ poste.justification|linebreaks }}</div> | |
191 | </fieldset> | |
192 |