Commit | Line | Data |
---|---|---|
63e17dff | 1 | {% extends 'admin/base_site.html' %} |
fd009814 PP |
2 | {% load adminmedia rapports i18n %} |
3 | ||
4 | {% block extrastyle %} | |
5 | {{ block.super }} | |
6 | <link rel="stylesheet" type="text/css" href="{% admin_media_prefix %}css/changelists.css" /> | |
7 | {% endblock %} | |
8 | ||
9 | {% block bodyclass %}change-list{% endblock %} | |
63e17dff PP |
10 | |
11 | {% block breadcrumbs %}{% if not is_popup %} | |
12 | <div class="breadcrumbs"> | |
13 | <a href="../../../">{% trans "Home" %}</a> › | |
14 | <a href="../../">Rh</a> › | |
15 | Rapport Postes | |
16 | </div> | |
17 | {% endif %}{% endblock %} | |
18 | ||
19 | {% block content %} | |
fd009814 | 20 | <div id="content-main"><div class="module filtered" id="changelist"> |
63e17dff | 21 | |
fd009814 PP |
22 | <div id="changelist-filter"> |
23 | <h2>{% trans 'Filter' %}</h2> | |
24 | {% filter_region %} | |
25 | {% filter_implantation %} | |
26 | </div> | |
27 | ||
28 | <table id="result_list"> | |
29 | <thead> | |
63e17dff PP |
30 | <tr> |
31 | <th># du poste</th> | |
32 | <th>Nom du poste</th> | |
33 | <th>Implantation</th> | |
34 | <th># de l'employé</th> | |
35 | <th>Nom</th> | |
36 | <th>Prénom</th> | |
37 | </tr> | |
fd009814 | 38 | </thead> |
7bedacc4 | 39 | {% spaceless %}{% for poste in postes %} |
fd009814 | 40 | <tr class="{% cycle 'row1' 'row2' %}"> |
63e17dff PP |
41 | <td>{{ poste.id }}</td> |
42 | <td>{{ poste.nom }}</td> | |
43 | <td>{{ poste.implantation }}</td> | |
44 | <td>{{ poste.employe_id }}</td> | |
45 | <td>{{ poste.employe_nom }}</td> | |
46 | <td>{{ poste.employe_prenom }}</td> | |
47 | </tr> | |
7bedacc4 | 48 | {% endfor %}{% endspaceless %} |
63e17dff PP |
49 | </table> |
50 | ||
fd009814 | 51 | </div></div> |
63e17dff | 52 | {% endblock %} |