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