| 1 | <fieldset class="module aligned"> |
| 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 aligned"> |
| 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 %} |
| 16 | {% if dossier.remplacement %} |
| 17 | {% include "rh/form-row.html" with label="Remplacement" value=dossier.remplacement_de %} |
| 18 | {% endif %} |
| 19 | </fieldset> |
| 20 | |
| 21 | <fieldset class="module aligned page-break"> |
| 22 | <h2>Rémunération en cours</h2> |
| 23 | <table> |
| 24 | {% include "dae/embauche-remun-consulter.html" %} |
| 25 | </table> |
| 26 | </fieldset> |
| 27 | |
| 28 | {% include "rh/include/pieces.html" %} |
| 29 | |
| 30 | {% if contrats %} |
| 31 | <fieldset class="module aligned"> |
| 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> |
| 53 | {% endif %} |
| 54 | |
| 55 | <fieldset class="module aligned"> |
| 56 | <h2>Historique de rémunération</h2> |
| 57 | {% include "rh/include/remunerations.html" with remunerations=dossier.remunerations %} |
| 58 | </fieldset> |
| 59 | |
| 60 | {% include "rh/include/commentaires.html" %} |