+{% extends 'rh/rapports/base.html' %}
+{% load adminmedia rapports i18n %}
+
+{% block nomrapport %}Rapport Contrats{% endblock %}
+
+{% block contentrapport %}
+
+<div id="changelist-filter">
+<h2>{% trans 'Filter' %}</h2>
+{% comment %}
+{% filter_region %}
+{% filter_implantation %}
+{% filter_comble %}
+{% endcomment %}
+</div>
+
+<table id="result_list">
+<thead>
+<tr>
+ <th># de l'employé</th>
+ <th>Nom</th>
+ <th>Prénom</th>
+ <th>Poste</th>
+ <th>Type de contrat</th>
+ <th>Date début</th>
+ <th>Date fin</th>
+</tr>
+</thead>
+{% spaceless %}{% for contrat in contrats %}
+<tr class="{% cycle 'row1' 'row2' %}">
+ <td>{{ contrat.dossier.employe.id }}</td>
+ <td>{{ contrat.dossier.employe.nom }}</td>
+ <td>{{ contrat.dossier.employe.prenom }}</td>
+ <td>{{ contrat.dossier.poste }}</td>
+ <td>{{ contrat.type_contrat.nom }}</td>
+ <td>{{ contrat.date_debut }}</td>
+ <td>{{ contrat.date_fin|default:'' }}</td>
+</tr>
+{% endfor %}{% endspaceless %}
+</table>
+
+{% endblock %}