Commit | Line | Data |
---|---|---|
c233491c | 1 | <fieldset class="module aligned"> |
5dfc3761 | 2 | <h2>Localisation</h2> |
b0cf30b8 | 3 | {% include "rh/form-row.html" with label="Zone administrative" value=dossier.poste.implantation.zone_administrative %} |
838bc59d OL |
4 | {% include "rh/form-row.html" with label="Implantation" value=dossier.poste.implantation %} |
5 | </fieldset> | |
6 | ||
c233491c | 7 | <fieldset class="module aligned"> |
838bc59d | 8 | <h2>Informations générales</h2> |
5dfc3761 | 9 | {% include "rh/form-row.html" with label="Échelon" value=dossier.classement %} |
838bc59d OL |
10 | {% include "rh/form-row.html" with label="Date début d'occupation" value=dossier.date_debut %} |
11 | {% include "rh/form-row.html" with label="Date fin d'occupation" value=dossier.date_fin %} | |
12 | {% include "rh/form-row.html" with label="Régime de travail (% du temps complet)" value=dossier.regime_travail %} | |
13 | {% include "rh/form-row.html" with label="Régime de travail (Nb. heures par semaine)" value=dossier.regime_travail_nb_heure_semaine %} | |
14 | {% include "rh/form-row.html" with label="Statut" value=dossier.statut %} | |
15 | {% include "rh/form-row.html" with label="Organisme BSTG" value=dossier.organisme_bstg %} | |
16 | {% include "rh/form-row.html" with label="Statut de résidence" value=dossier.statut_residence %} | |
3ebc0952 | 17 | {% if dossier.remplacement %} |
838bc59d | 18 | {% include "rh/form-row.html" with label="Remplacement" value=dossier.remplacement_de %} |
3ebc0952 | 19 | {% endif %} |
838bc59d | 20 | </fieldset> |
3ebc0952 | 21 | |
bfb5e43e | 22 | {% if dossier.actif %} |
c233491c | 23 | <fieldset class="module aligned page-break"> |
838bc59d OL |
24 | <h2>Rémunération en cours</h2> |
25 | <table> | |
26 | {% include "dae/embauche-remun-consulter.html" %} | |
27 | </table> | |
28 | </fieldset> | |
bfb5e43e | 29 | {% endif %} |
baf9b78c | 30 | |
520ab455 JPC |
31 | {% include "rh/include/pieces.html" %} |
32 | ||
ce740bb5 | 33 | {% if contrats %} |
c233491c | 34 | <fieldset class="module aligned"> |
838bc59d OL |
35 | <h2>Contrats</h2> |
36 | <table> | |
37 | <tr> | |
38 | <th>Type</th> | |
39 | <th>Date début</th> | |
40 | <th>Date fin</th> | |
41 | <th>Fichier</th> | |
42 | </tr> | |
43 | {% for c in contrats %} | |
44 | <tr> | |
45 | <td>{{ c.type_contrat }}</td> | |
46 | <td>{{ c.date_debut }}</td> | |
47 | <td>{{ c.date_fin }}</td> | |
48 | <td>{% if c.fichier %} | |
e57655ce | 49 | <a href="{{ c.fichier.url }}">Télécharger</a> |
838bc59d OL |
50 | {% endif %} |
51 | </td> | |
52 | </tr> | |
53 | {% endfor %} | |
54 | </table> | |
55 | </fieldset> | |
ce740bb5 | 56 | {% endif %} |
838bc59d | 57 | |
c233491c | 58 | <fieldset class="module aligned"> |
838bc59d OL |
59 | <h2>Historique de rémunération</h2> |
60 | {% include "rh/include/remunerations.html" with remunerations=dossier.remunerations %} | |
61 | </fieldset> | |
2a36598b JPC |
62 | |
63 | {% include "rh/include/commentaires.html" %} |