Commit | Line | Data |
---|---|---|
fbe60a9d OL |
1 | <h2>Dossier {{ dossier }}</h2> |
2 | ||
3 | <h3>Implantation</h3> | |
4 | {{ dossier.poste.implantation }} | |
3ebc0952 | 5 | |
02e69aa2 JPC |
6 | {% include "rh/include/remunerations.html" with remunerations=dossier.remunerations_en_cours %} |
7 | ||
3ebc0952 OL |
8 | <h3>Durée et régime</h3> |
9 | <table> | |
10 | <tr><th>Date début d'occupation</th><td>{{ dossier.date_debut }}</td></tr> | |
11 | <tr><th>Date fin d'occupation</th><td>{% if dossier.date_fin == None %}<span style="color: red;">en cours</span>{% else %}{{ dossier.date_fin }}{% endif %}</td></tr> | |
12 | ||
13 | <tr><th>Régime de travail (% du temps complet)</th><td>{{ dossier.regime_travail }}</td></tr> | |
14 | <tr><th>Régime de travail (Nb. heures par semaine)</th><td>{{ dossier.regime_travail_nb_heure_semaine }}</td></tr> | |
15 | </table> | |
16 | ||
17 | <h3>Information</h3> | |
18 | <table> | |
19 | <tr><th>Statut</th><td>{{ dossier.statut }}</td></tr> | |
20 | <tr><th>Organisme BSTG</th><td>{{ dossier.organisme_bstg }}</td></tr> | |
21 | <tr><th>Statut de résidence</th><td>{{ dossier.statut_residence }}</td></tr> | |
22 | <tr><th>Classement</th><td>{{ dossier.classement }}</td></tr> | |
23 | {% if dossier.remplacement %} | |
24 | <th>Remplacement</th><td>{{ dossier.remplacement_de }}</td></tr> | |
25 | {% endif %} | |
26 | </table> | |
27 | ||
02e69aa2 | 28 | {% include "rh/include/remunerations.html" with remunerations=dossier.remunerations %} |
baf9b78c | 29 | |
520ab455 JPC |
30 | {% include "rh/include/pieces.html" %} |
31 | ||
32 | <h3>Contrats</h3> | |
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> | |
2a36598b JPC |
52 | |
53 | {% include "rh/include/commentaires.html" %} |