d04d084c |
1 | {% extends 'sgrh.html' %} |
a9faef67 |
2 | |
3 | {% block title %}RH - {{ employe }}{% endblock %} |
c9122f1d |
4 | {% block sous_titre %}Mon profil RH{% endblock %} |
a9faef67 |
5 | |
6 | {% block main %} |
5ea6b5bb |
7 | <div id="identification" class="contenu"> |
8 | <div class="gauche"> |
9 | <img src="{{ employe.url_photo }}" alt="Photo" class="bordure" /> |
10 | </div> |
11 | <div class="gauche"> |
12 | <h1>{{ employe.civilite }} {{ employe }}</h1> |
0470515a |
13 | |
9b0a8554 |
14 | {% for d in dossiers_encours %} |
15 | <p> |
16 | {% if employe.genre.upper == 'F' %} |
17 | {{ d.poste.nom_feminin }} |
18 | {% else %} |
19 | {{ d.poste.nom }} |
20 | {% endif %} |
21 | </p> |
22 | <p> |
23 | {{ d.poste.service|default_if_none:"Service inconnu" }}<br /> |
24 | {{ d.poste.implantation.nom }}<br /> |
25 | {{ d.poste.implantation.adresse_physique_ville }} |
26 | </p> |
27 | {% endfor %} |
c9122f1d |
28 | </div> |
d04d084c |
29 | </div> |
30 | |
5ea6b5bb |
31 | <div id="infos_perso" class="clear gauche50 contenu"> |
d04d084c |
32 | <h2>Informations personnelles</h2> |
33 | <table> |
34 | <tbody> |
0470515a |
35 | {% if employe.nom_affichage %} |
d04d084c |
36 | <tr> |
37 | <th>Nom d'affichage :</th> |
38 | <td>{{ employe.nom_affichage }}</td> |
39 | </tr> |
0470515a |
40 | {% endif %} |
d04d084c |
41 | <tr> |
42 | <th>Date de naissance :</th> |
43 | <td>{{ employe.date_naissance }}</td> |
44 | </tr> |
45 | <tr> |
46 | <th>Nationalité :</th> |
47 | <td>{{ employe.nationalite }}</td> |
48 | </tr> |
49 | <tr> |
50 | <th>Situation familiale :</th> |
51 | <td>{{ employe.situation_familiale }}</td> |
52 | </tr> |
53 | </tbody> |
54 | </table> |
d04d084c |
55 | </div> |
5ea6b5bb |
56 | <div id="infos" class="gauche50 contenu"> |
0470515a |
57 | <h2>Informations professionnelles AUF</h2> |
c9122f1d |
58 | <table> |
59 | <tbody> |
60 | <tr> |
0470515a |
61 | <th>Date d'entrée :</th> |
62 | <td>{{ employe.date_entree }}</td> |
c9122f1d |
63 | </tr> |
64 | </tbody> |
65 | </table> |
d04d084c |
66 | </div> |
0470515a |
67 | |
5ea6b5bb |
68 | <div id="coord_perso" class="clear gauche50 contenu"> |
d04d084c |
69 | <h2>Coordonnées personnelles</h2> |
70 | <table> |
71 | <tbody> |
72 | <tr> |
73 | <th>Téléphone domicile :</th> |
74 | <td>{{ employe.tel_domicile }}</td> |
75 | </tr> |
76 | <tr> |
77 | <th>Téléphone cellulaire :</th> |
78 | <td>{{ employe.tel_cellulaire }}</td> |
79 | </tr> |
80 | <tr> |
81 | <th>Adresse complète :</th> |
82 | <td> |
83 | {{ employe.adresse }}<br /> |
84 | {% if employe.ville or employe.province %} |
0470515a |
85 | {{ employe.ville }}{% if employe.ville and employe.province %}, {% endif %} |
d04d084c |
86 | {{ employe.province }} |
87 | <br /> |
88 | {% endif %} |
89 | {% if employe.code_postal %} |
90 | {{ employe.code_postal }}<br /> |
91 | {% endif %} |
92 | {{ employe.pays.nom }} |
93 | </td> |
94 | </tr> |
95 | </tbody> |
96 | </table> |
97 | </div> |
5ea6b5bb |
98 | <div id="coord" class="gauche50 contenu"> |
0470515a |
99 | <h2>Coordonnées professionnelles AUF</h2> |
9b0a8554 |
100 | <table> |
101 | <tbody> |
102 | <tr> |
0470515a |
103 | <th>Courriel :</th> |
104 | <td>{{ employe.courriel }}</td> |
9b0a8554 |
105 | </tr> |
106 | <tr> |
0470515a |
107 | <th>Téléphone IP :</th> |
108 | <td>{{ employe.tel_pro_ip|default_if_none:"" }}</td> |
9b0a8554 |
109 | </tr> |
110 | <tr> |
0470515a |
111 | <th>Téléphone :</th> |
112 | <td> |
113 | {% for d in dossiers_encours %} |
114 | {% if d.poste.implantation.telephone_interne %} |
115 | {{ d.poste.implantation.telephone_interne }} |
116 | {% else %} |
117 | {{ d.poste.implantation.telephone|default_if_none:"" }} |
118 | {% endif %} |
119 | {% if employe.tel_pro_poste %} |
5ea6b5bb |
120 | poste {{ employe.tel_pro_poste }} |
0470515a |
121 | {% endif %} |
122 | {% endfor %} |
123 | </td> |
9b0a8554 |
124 | </tr> |
125 | <tr> |
0470515a |
126 | <th>Télécopie :</th> |
127 | <td> |
128 | {% for d in dossiers_encours %} |
129 | {% if d.poste.implantation.fax_interne %} |
130 | {{ d.poste.implantation.fax_interne }} |
131 | {% else %} |
132 | {{ d.poste.implantation.fax|default_if_none:"" }} |
133 | {% endif %} |
134 | {% endfor %} |
135 | </td> |
9b0a8554 |
136 | </tr> |
137 | <tr> |
0470515a |
138 | <th>Adresse postale :</th> |
139 | <td> |
140 | {% for d in dossiers_encours %} |
141 | {% comment %} |
142 | Formattage identique à annuaire intranet. |
143 | {% endcomment %} |
144 | {% with d.poste.implantation as i %} |
145 | {% if i.adresse_postale_precision_avant %} |
146 | {{ i.adresse_postale_precision_avant }}<br /> |
147 | {% endif %} |
148 | {% if i.adresse_postale_no %} |
149 | {{ i.adresse_postale_no }}, |
150 | {% endif %} |
151 | {% if i.adresse_postale_rue %} |
152 | {{ i.adresse_postale_rue }}<br /> |
153 | {% endif %} |
154 | {% if i.adresse_postale_bureau %} |
155 | {{ i.adresse_postale_bureau }} |
156 | {% endif %} |
157 | {% if i.adresse_postale_precision %} |
158 | {{ i.adresse_postale_precision }}<br /> |
159 | {% endif %} |
160 | {% if i.adresse_postale_boite_postale %} |
161 | {{ i.adresse_postale_boite_postale }}<br /> |
162 | {% endif %} |
163 | {% if i.adresse_postale_code_postal_avant_ville %} |
164 | {% if i.adresse_postale_code_postal %} |
165 | {{ i.adresse_postale_code_postal }} |
166 | {% endif %} |
167 | {{ i.adresse_postale_ville }}{% if i.adresse_postale_ville and i.adresse_postale_region %}, {% endif %} |
168 | {% if i.adresse_postale_region %} |
169 | ({{ i.adresse_postale_region }})<br /> |
170 | {% endif %} |
171 | {% else %} |
172 | {{ i.adresse_postale_ville }}{% if i.adresse_postale_ville and i.adresse_postale_region %}, {% endif %} |
173 | {% if i.adresse_postale_region %} |
174 | ({{ i.adresse_postale_region }}) |
175 | {% endif %} |
176 | {% if i.adresse_postale_code_postal %} |
177 | {{ i.adresse_postale_code_postal }}<br /> |
178 | {% endif %} |
179 | {% endif %} |
180 | {{ i.adresse_postale_pays.nom }} |
181 | {% endwith %} |
182 | {% endfor %} |
183 | </td> |
9b0a8554 |
184 | </tr> |
185 | </tbody> |
186 | </table> |
0470515a |
187 | </div> |
5ea6b5bb |
188 | <div class="clear contenu"> |
0470515a |
189 | <h2>Dépendants (ayant-droits)</h2> |
190 | {% if employe.ayantdroits.all %} |
191 | <ul> |
192 | {% for ad in employe.ayantdroits.all %} |
193 | <li>{{ ad }}</li> |
194 | {% endfor %} |
195 | </ul> |
196 | {% else %} |
197 | <p>Aucun dépendant.</p> |
198 | {% endif %} |
199 | </div> |
200 | <hr /> |
201 | |
5ea6b5bb |
202 | <div id="postes" class="contenu"> |
0470515a |
203 | <h2>Poste{{ dossiers_encours|pluralize }} en cours</h2> |
204 | |
205 | {% for d in dossiers_encours %} |
206 | <h3>{{ d.poste.nom }}</h3> |
207 | <p> |
208 | {{ d.poste.service }}<br /> |
209 | {{ d.poste.implantation.nom }}<br /> |
210 | {{ d.poste.implantation.adresse_physique_ville }} |
211 | </p> |
212 | <table> |
213 | <tbody> |
214 | <tr> |
215 | <th>Type de poste :</th> |
216 | <td>{{ d.poste.type_poste }}</td> |
217 | <th>Sous la responsabilité du poste :</th> |
218 | <td>{{ d.poste.responsable }}</td> |
219 | </tr> |
220 | <tr> |
221 | <th>Statut</th> |
222 | <td>{{ d.statut }}</td> |
223 | <th>Organisation d'origine</th> |
224 | <td>{{ d.organisme_bstg|default_if_none:"Non applicable" }}</td> |
225 | </tr> |
226 | <tr> |
227 | <th>En remplacement sur ce poste ?</th> |
228 | <td>{{ d.remplacement|yesno:"oui, non" }}</td> |
229 | <th></th> |
230 | <td></td> |
231 | </tr> |
232 | <tr> |
233 | <th>Statut résidence</th> |
234 | <td>{{ d.statut_residence }}</td> |
235 | <th></th> |
236 | <td></td> |
237 | </tr> |
238 | <tr> |
239 | <th>Régime de travail (prévu)</th> |
240 | <td>{{ d.poste.regime_travail }}</td> |
241 | <th>Nombre d'heures par semaine (prévu) :</th> |
242 | <td>{{ d.poste.regime_travail_nb_heure_semaine }}</td> |
243 | </tr> |
244 | <tr> |
245 | <th>Régime de travail (réel)</th> |
246 | <td> |
247 | {% if d.regime_travail %} |
248 | {{ d.regime_travail }} % du temps complet |
249 | {% endif %} |
250 | </td> |
251 | <th>Nombre d'heures par semaine (réel)</th> |
252 | <td>{{ d.regime_travail_nb_heure_semaine }}</td> |
253 | </tr> |
254 | <tr> |
255 | <th>Début d'occupation</th> |
256 | <td>{{ d.date_debut }}</td> |
257 | <th>Fin d'occupation</th> |
258 | <td>{{ d.date_fin|default_if_none:"Non définie" }}</td> |
259 | </tr> |
260 | </tbody> |
261 | </table> |
262 | |
263 | <h3>Rémunération</h3> |
264 | {{ d.classement }}<br /> |
265 | |
266 | <h3>Contrats</h3> |
267 | {{ d.contrats }} |
268 | |
9b0a8554 |
269 | {% endfor %} |
270 | </div> |
0470515a |
271 | <hr /> |
d04d084c |
272 | |
5ea6b5bb |
273 | <div id="dossiers" class="contenu"> |
0470515a |
274 | <h2>Ancien{{ dossiers|pluralize }} poste{{ dossiers|pluralize }}</h2> |
9b0a8554 |
275 | <table> |
9b0a8554 |
276 | <tbody> |
9b0a8554 |
277 | {% for d in dossiers_passes %} |
278 | {% include "rh/include/dossier.html" %} |
279 | {% endfor %} |
280 | </tbody> |
281 | </table> |
d04d084c |
282 | </div> |
9b0a8554 |
283 | |
284 | {% comment %} |
285 | * Pièces jointes (Employé, Poste, Dossier?) |
286 | * Commentaire / remarque ? attention, commentaires privés des gestionnnaires? |
287 | * Rémunération |
288 | * Évaluation |
289 | {% endcomment %} |
290 | |
a9faef67 |
291 | {% endblock %} |
292 | |