1 {% extends 'rh/rapports/base.html' %}
2 {% load adminmedia rapports i18n %}
4 {% block nomrapport %}Rapport postes par implantation{% endblock %}
5 {% block count_elements %}{% endblock %}
7 {% block contentrapport %}
10 <li>{{ d.region.nom }}
12 {% for i in d.implantations %}
13 <li> {{ i.implantation.nom }} ({{ i.num_postes }})
15 {% for p in i.postes %}
16 <li>{{ p.nom }} [{{ p.id }}]
</li>