Commit | Line | Data |
---|---|---|
fbe60a9d OL |
1 | <h2>Dossier {{ dossier }}</h2> |
2 | ||
3 | <h3>Implantation</h3> | |
4 | {{ dossier.poste.implantation }} | |
3ebc0952 OL |
5 | |
6 | <h3>Durée et régime</h3> | |
7 | <table> | |
8 | <tr><th>Date début d'occupation</th><td>{{ dossier.date_debut }}</td></tr> | |
9 | <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> | |
10 | ||
11 | <tr><th>Régime de travail (% du temps complet)</th><td>{{ dossier.regime_travail }}</td></tr> | |
12 | <tr><th>Régime de travail (Nb. heures par semaine)</th><td>{{ dossier.regime_travail_nb_heure_semaine }}</td></tr> | |
13 | </table> | |
14 | ||
15 | <h3>Information</h3> | |
16 | <table> | |
17 | <tr><th>Statut</th><td>{{ dossier.statut }}</td></tr> | |
18 | <tr><th>Organisme BSTG</th><td>{{ dossier.organisme_bstg }}</td></tr> | |
19 | <tr><th>Statut de résidence</th><td>{{ dossier.statut_residence }}</td></tr> | |
20 | <tr><th>Classement</th><td>{{ dossier.classement }}</td></tr> | |
21 | {% if dossier.remplacement %} | |
22 | <th>Remplacement</th><td>{{ dossier.remplacement_de }}</td></tr> | |
23 | {% endif %} | |
24 | </table> | |
25 | ||
26 | <h3>Rémunérations</h3> | |
27 | <table> | |
28 | <tr> | |
29 | <th>Type</th> | |
30 | <th>Nature</th> | |
31 | <th>Montant (devise)</th> | |
32 | <th>Commentaire</th> | |
33 | <th>Date début</th> | |
34 | <th>Date fin</th> | |
35 | </tr> | |
36 | {% for r in dossier.remunerations %} | |
37 | <tr> | |
38 | <th>{{ r.type }}</th> | |
39 | <th>{{ r.type.nature_remuneration }}</th> | |
40 | <td>{{ r.montant }} {{ r.devise.code }}</td> | |
41 | <td>{{ r.commentaire }}</td> | |
42 | <td>{{ r.date_debut }}</td> | |
43 | <td>{{ r.date_fin }}</td> | |
44 | </tr> | |
45 | {% endfor %} | |
46 | </table> |