1 {% extends 'sgrh.html' %}
3 {% block title %}RH - {{ employe }}{% endblock %}
4 {% block sous_titre %}Mon profil RH{% endblock %}
9 <div id=
"identification">
10 <div class=
"gauche50">
11 <h2>{{ employe.civilite }} {{ employe }}
</h2>
12 {% for d in dossiers_encours %}
14 {% if employe.genre.upper == 'F' %}
15 {{ d.poste.nom_feminin }}
21 {{ d.poste.service|default_if_none:
"Service inconnu" }}
<br />
22 {{ d.poste.implantation.nom }}
<br />
23 {{ d.poste.implantation.adresse_physique_ville }}
27 <div class=
"gauche50">
28 <img src=
"{{ employe.photo }}" alt=
"Photo" width=
"150" height=
"200" />
34 <h2>Dépendants (ayant-droits)
</h2>
35 {% if employe.ayantdroits.all %}
37 {% for ad in employe.ayantdroits.all %}
46 <div id=
"infos" class=
"gauche50">
47 <h2>Informations professionnelles AUF
</h2>
51 <th>Date d'entrée :
</th>
52 <td>{{ employe.date_entree }}
</td>
58 <div id=
"infos_perso" class=
"gauche50">
59 <h2>Informations personnelles
</h2>
64 <th>Nom d'affichage :
</th>
65 <td>{{ employe.nom_affichage }}
</td>
69 <th>Date de naissance :
</th>
70 <td>{{ employe.date_naissance }}
</td>
73 <th>Nationalité :
</th>
74 <td>{{ employe.nationalite }}
</td>
77 <th>Situation familiale :
</th>
78 <td>{{ employe.situation_familiale }}
</td>
84 <div id=
"coord" class=
"clear gauche50">
85 <h2>Coordonnées professionnelles AUF
</h2>
90 <td>{{ employe.courriel }}
</td>
93 <th>Téléphone IP :
</th>
94 <td>{{ employe.champ }}
</td>
98 <td>{{ employe.champ }}
</td>
102 <td>{{ employe.champ }}
</td>
105 <th>Adresse postale :
</th>
112 <div id=
"coord_perso" class=
"gauche50">
113 <h2>Coordonnées personnelles
</h2>
117 <th>Téléphone domicile :
</th>
118 <td>{{ employe.tel_domicile }}
</td>
121 <th>Téléphone cellulaire :
</th>
122 <td>{{ employe.tel_cellulaire }}
</td>
125 <th>Adresse complète :
</th>
127 {{ employe.adresse }}
<br />
128 {% if employe.ville or employe.province %}
130 {% if employe.ville and employe.province %}, {% endif %}
131 {{ employe.province }}
134 {% if employe.code_postal %}
135 {{ employe.code_postal }}
<br />
137 {{ employe.pays.nom }}
144 <div id=
"postes" class=
"clear">
145 <h2>Poste{{ dossiers_encours|pluralize }}
</h2>
146 Globalement, mettre les infos du poste pertinente (n'en a pas beaucoup)...
147 ... mais surtout les infos du dossier (le fait que cette personne occupe ce poste).
148 {% for d in dossiers_encours %}
153 <td>{{ d.poste.nom }}
</td>
156 <th>Implantation :
</th>
157 <td>{{ d.poste.implantation }}
</td>
160 <th>Type de poste :
</th>
161 <td>{{ d.poste.type_poste }}
</td>
165 <td>{{ d.poste.service }}
</td>
168 <th>Poste du responsable :
</th>
169 <td>{{ d.poste.responsable }}
</td>
172 <th>Régime de travail :
</th>
173 <td>{{ d.poste.regime_travail }}
</td>
176 <th>Nombre d'heures par semaine :
</th>
177 <td>{{ d.poste.regime_travail_nb_heure_semaine }}
</td>
185 <h2>Dossier{{ dossiers|pluralize }}
</h2>
199 {% for d in dossiers_encours %}
200 {% include
"rh/include/dossier.html" %}
202 {% for d in dossiers_passes %}
203 {% include
"rh/include/dossier.html" %}
210 * Pièces jointes (Employé, Poste, Dossier?)
211 * Commentaire / remarque ? attention, commentaires privés des gestionnnaires?