Commit | Line | Data |
---|---|---|
63e17dff PP |
1 | {% extends 'admin/base_site.html' %} |
2 | {% load i18n %} | |
3 | ||
4 | {% block breadcrumbs %}{% if not is_popup %} | |
5 | <div class="breadcrumbs"> | |
6 | <a href="../../../">{% trans "Home" %}</a> › | |
7 | <a href="../../">Rh</a> › | |
8 | Rapport Postes | |
9 | </div> | |
10 | {% endif %}{% endblock %} | |
11 | ||
12 | {% block content %} | |
13 | <div id="content-main"> | |
14 | ||
15 | <table> | |
16 | <tr> | |
17 | <th># du poste</th> | |
18 | <th>Nom du poste</th> | |
19 | <th>Implantation</th> | |
20 | <th># de l'employé</th> | |
21 | <th>Nom</th> | |
22 | <th>Prénom</th> | |
23 | </tr> | |
7bedacc4 | 24 | {% spaceless %}{% for poste in postes %} |
63e17dff PP |
25 | <tr> |
26 | <td>{{ poste.id }}</td> | |
27 | <td>{{ poste.nom }}</td> | |
28 | <td>{{ poste.implantation }}</td> | |
29 | <td>{{ poste.employe_id }}</td> | |
30 | <td>{{ poste.employe_nom }}</td> | |
31 | <td>{{ poste.employe_prenom }}</td> | |
32 | </tr> | |
7bedacc4 | 33 | {% endfor %}{% endspaceless %} |
63e17dff PP |
34 | </table> |
35 | ||
36 | </div> | |
37 | {% endblock %} |