Commit | Line | Data |
---|---|---|
c233491c | 1 | <fieldset class="module aligned"> |
838bc59d OL |
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 | ||
c233491c | 7 | <fieldset class="module aligned"> |
838bc59d OL |
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 | |
c233491c | 21 | <fieldset class="module aligned page-break"> |
838bc59d OL |
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 | ||
ce740bb5 | 30 | {% if contrats %} |
c233491c | 31 | <fieldset class="module aligned"> |
838bc59d OL |
32 | <h2>Contrats</h2> |
33 | <table> | |
34 | <tr> | |
35 | <th>Type</th> | |
36 | <th>Date début</th> | |
37 | <th>Date fin</th> | |
38 | <th>Fichier</th> | |
39 | </tr> | |
40 | {% for c in contrats %} | |
41 | <tr> | |
42 | <td>{{ c.type_contrat }}</td> | |
43 | <td>{{ c.date_debut }}</td> | |
44 | <td>{{ c.date_fin }}</td> | |
45 | <td>{% if c.fichier %} | |
46 | <a href="{{ media }}{{ c.fichier }}">Télécharger</a> | |
47 | {% endif %} | |
48 | </td> | |
49 | </tr> | |
50 | {% endfor %} | |
51 | </table> | |
52 | </fieldset> | |
ce740bb5 | 53 | {% endif %} |
838bc59d | 54 | |
c233491c | 55 | <fieldset class="module aligned"> |
838bc59d OL |
56 | <h2>Historique de rémunération</h2> |
57 | {% include "rh/include/remunerations.html" with remunerations=dossier.remunerations %} | |
58 | </fieldset> | |
2a36598b JPC |
59 | |
60 | {% include "rh/include/commentaires.html" %} |