{% if items is not empty %}
{% for item in items %} {% endfor %}
Poste Service Statut Salariés Actions
{{ item.nom }}
{{ item.description ?: 'Aucune description' }}
{% if item.service %}
{{ item.service.nom }}
{% else %} Non rattaché {% endif %}
{{ item.actif ? 'Actif' : 'Inactif' }} {{ salarie_counts[item.id]|default(0) }}
{% if is_granted('EMPLOYEE_JOB_EDIT') %} Modifier {% endif %} {% if is_granted('EMPLOYEE_JOB_DISABLE') %} Supprimer {% endif %}
{% else %}
Aucun poste Ajustez vos filtres ou créez un nouveau poste.
{% endif %}