Commit | Line | Data |
---|---|---|
3ebc0952 OL |
1 | <h2>Poste</h2> |
2 | ||
3 | <h3>Identification</h3> | |
4 | <table> | |
5 | <tr><th>Nom</th><td>{{ poste.nom }}</td></tr> | |
6 | <tr><th>Implantation</th><td>{{ poste.implantation }}</td></tr> | |
7 | ||
8 | <tr><th>Type</th><td>{{ poste.type_poste }}</td></tr> | |
9 | <tr><th>Service</th><td>{{ poste.service }}</td></tr> | |
10 | <tr><th>Responsable</th><td>{{ poste.responsable }}</td></tr> | |
11 | </table> | |
12 | ||
3ebc0952 OL |
13 | <h3>Contrat</h3> |
14 | <table> | |
15 | <tr><th>Régime de travail (% du temps complet)</th><td>{{ poste.regime_travail }}</td></tr> | |
16 | <tr><th>Régime de travail (Nb. heures par semaine)</th><td>{{ poste.regime_travail_nb_heure_semaine }}</td></tr> | |
17 | </table> | |
18 | ||
19 | <h3>Recrutement</h3> | |
20 | <table> | |
0dcfc806 JPC |
21 | <tr><th>Local</th><td>{{ poste.local|yesno:"Oui,Non" }}</td></tr> |
22 | <tr><th>Expatrié</th><td>{{ poste.expatrie|yesno:"Oui,Non" }}</td></tr> | |
23 | <tr><th>Mise à disposition</th><td>{{ poste.mise_a_disposition|yesno:"Oui,Non" }}</td></tr> | |
3ebc0952 OL |
24 | <tr><th>Appel à candidature</th><td>{{ poste.appel }}</td></tr> |
25 | </table> | |
0dcfc806 JPC |
26 | <h3>Rémunération</H3> |
27 | <table id="classement"> | |
28 | <thead> | |
29 | <tr> | |
30 | <th></th> | |
31 | <th>Min.</th> | |
32 | <th>Max.</th> | |
33 | </tr> | |
34 | </thead> | |
35 | <tbody> | |
36 | <tr> | |
37 | <th>Échelon AUF</th> | |
38 | <td>{{ poste.classement_min|default:"s/o" }}</td> | |
39 | <td>{{ poste.classement_max|default:"s/o" }}</td> | |
40 | </tr> | |
41 | <tr> | |
42 | <th>Valeur du point</th> | |
43 | <td class="montant">{{ poste.valeur_point_min|default:"" }}</td> | |
44 | <td class="montant">{{ poste.valeur_point_max|default:"" }}</td> | |
45 | </tr> | |
46 | <tr> | |
47 | <th>Salaire de base</th> | |
48 | <td class="montant">{{ poste.salaire_min|default:"0"|floatformat:0 }} {{ poste.devise_min.code }}</td> | |
49 | <td class="montant">{{ poste.salaire_max|default:"0"|floatformat:0 }} {{ poste.devise_max.code }}</td> | |
50 | </tr> | |
51 | <tr> | |
52 | <th>Indemnité</th> | |
53 | <td class="montant">{{ poste.indemn_min|default:"0"|floatformat:0 }} {{ poste.devise_min.code }}</td> | |
54 | <td class="montant">{{ poste.indemn_max|default:"0"|floatformat:0 }} {{ poste.devise_max.code }}</td> | |
55 | </tr> | |
56 | <tr> | |
57 | <th>Autres</th> | |
58 | <td class="montant">{{ poste.autre_min|default:"0"|floatformat:0 }} {{ poste.devise_min.code }}</td> | |
59 | <td class="montant">{{ poste.autre_max|default:"0"|floatformat:0 }} {{ poste.devise_max.code }}</td> | |
60 | </tr> | |
61 | </tbody> | |
62 | </table> | |
63 | ||
64 | <h3>Comparatif</H3> | |
65 | <h4>Device comparative : {{ poste.devise_comparaison }} </h4> | |
66 | <table id="classement"> | |
67 | <thead> | |
68 | <tr> | |
69 | <th></th> | |
70 | <th>Min.</th> | |
71 | <th>Max.</th> | |
72 | </tr> | |
73 | </thead> | |
74 | <tbody> | |
75 | <tr> | |
76 | <th>Comp. locale</th> | |
77 | <td class="montant">{{ poste.comp_locale_min|default:"0" }}</td> | |
78 | <td class="montant">{{ poste.comp_locale_max|default:"0" }}</td> | |
79 | </tr> | |
80 | <tr> | |
81 | <th>Comp. université</th> | |
82 | <td class="montant">{{ poste.comp_universite_min|default:"0" }}</td> | |
83 | <td class="montant">{{ poste.comp_universite_max|default:"0" }}</td> | |
84 | </tr> | |
85 | <tr> | |
86 | <th>Comp. fonction pub.</th> | |
87 | <td class="montant">{{ poste.comp_fonctionpub_min|default:"0" }}</td> | |
88 | <td class="montant">{{ poste.comp_fonctionpub_max|default:"0" }}</td> | |
89 | </tr> | |
90 | <tr> | |
91 | <th>Comp. ONG</th> | |
92 | <td class="montant">{{ poste.comp_ong_min|default:"0" }}</td> | |
93 | <td class="montant">{{ poste.comp_ong_max|default:"0" }}</td> | |
94 | </tr> | |
95 | <tr> | |
96 | <th>Comp. autre</th> | |
97 | <td class="montant">{{ poste.comp_autre_min|default:"0" }}</td> | |
98 | <td class="montant">{{ poste.comp_autre_max|default:"0" }}</td> | |
99 | </tr> | |
100 | <tr> | |
101 | <th>valeur</th> | |
102 | <td class="montant">{{ poste.valeur_valeur_min|default:"0" }}</td> | |
103 | <td class="montant">{{ poste.valeur_valeur_max|default:"0" }}</td> | |
104 | </tr> | |
105 | </tbody> | |
106 | </table> | |
107 | {% if poste.justification %} | |
108 | <h3>Justification</h3> | |
109 | {{ poste.justification }} | |
110 | {% endif %} | |
111 | ||
112 | {% if poste.date_debut or poste.date_fin %} | |
113 | <h3>Autres méta-données</h3> | |
114 | <table> | |
115 | <tr> | |
116 | <th>Date début</th> | |
117 | <td>{{ poste.date_debut|default:"s/o" }}</td> | |
118 | </tr> | |
119 | <tr> | |
120 | <th>Date fin</th> | |
121 | <td>{{ poste.date_fin|default:"s/o" }}</td> | |
122 | </tr> | |
123 | </table> | |
124 | ||
125 | {% endif %} | |
126 | ||
127 | {% if financements|length > 0 %} | |
128 | <h3>Financement</h3> | |
129 | <table> | |
130 | <thead> | |
131 | <tr> | |
132 | <th>Type</th> | |
133 | <th>Pourcentage</th> | |
134 | <th>Commentaire</th> | |
135 | </tr> | |
136 | </thead> | |
137 | <tbody> | |
138 | {% for f in financements %} | |
139 | <tr> | |
140 | <td>{{ f.type }}</td> | |
141 | <td>{{ f.pourcentage|floatformat:"2" }}%</td> | |
142 | <td>{{ f.commentaire }}</td> | |
143 | </tr> | |
144 | {% endfor %} | |
145 | </tbody> | |
146 | </table> | |
147 | {% endif %} | |
148 | ||
149 | {% include "rh/include/pieces.html" %} | |
150 | ||
151 | {% if dossiers|length > 0 %} | |
152 | <h3>Autres méta-données</h3> | |
153 | <table> | |
154 | <tr> | |
155 | <th>Date début</th> | |
156 | <td>{{ poste.date_debut|default:"s/o" }}</td> | |
157 | </tr> | |
158 | <tr> | |
159 | <th>Date fin</th> | |
160 | <td>{{ poste.date_fin|default:"s/o" }}</td> | |
161 | </tr> | |
162 | </table> | |
163 | ||
164 | {% endif %} | |
165 | ||
166 | {% if dossiers|length > 0 %} | |
167 | <h3>Dossiers</h3> | |
168 | <table> | |
169 | <thead> | |
170 | <tr> | |
171 | <th>Date début</th> | |
172 | <th>Date fin</th> | |
173 | <th># du poste</th> | |
174 | <th>Actif</th> | |
175 | <th>Employé<th> | |
176 | </tr> | |
177 | </thead> | |
178 | <tbody> | |
179 | {% for d in dossiers %} | |
180 | <tr> | |
181 | <td>{{ d.date_debut }}</td> | |
182 | <td>{{ d.date_fin }}</td> | |
183 | <td>{{ d.id }}</td> | |
184 | <td>{{ d.actif|yesno:"Oui,Non" }}</td> | |
185 | <td>{{ d.employe }}</td> | |
186 | </tr> | |
187 | {% endfor %} | |
188 | </tbody> | |
189 | </table> | |
190 | {% endif %} | |
191 | ||
192 | {% if comparaisons|length > 0 %} | |
193 | <h3>Dossiers de comparaison</h3> | |
194 | <table> | |
195 | <thead> | |
196 | <tr> | |
197 | <th>Implantation</th> | |
198 | <th>Nom</th> | |
199 | <th>Montant</th> | |
200 | <th>Devise<th> | |
201 | </tr> | |
202 | </thead> | |
203 | <tbody> | |
204 | {% for p in comparaisons %} | |
205 | <tr> | |
206 | <td>{{ p.implantation }}</td> | |
207 | <td>{{ p.nom }}</td> | |
208 | <td>{{ p.montant|floatformat:2 }}</td> | |
209 | <td>{{ p.devise|default:"s/o" }}</td> | |
210 | </tr> | |
211 | {% endfor %} | |
212 | </tbody> | |
213 | </table> | |
214 | {% endif %} | |
215 | ||
216 | {% if commentaires|length > 0 %} | |
217 | <h3>Commentaires</h3> | |
218 | <table> | |
219 | <thead> | |
220 | <tr> | |
221 | <th>Commentaire</th> | |
222 | <th>Auteur</th> | |
223 | </tr> | |
224 | </thead> | |
225 | <tbody> | |
226 | {% for c in commentaires %} | |
227 | <tr> | |
228 | <td>{{ c.texte }}</td> | |
229 | <td>{{ c.owner }}</td> | |
230 | </tr> | |
231 | {% endfor %} | |
232 | </tbody> | |
233 | </table> | |
234 | {% endif %} | |
3ebc0952 | 235 |