{% extends '@App/app.html.twig' %} {% block title %}Établissements{% endblock %} {% block page_header %}{% endblock %} {% block content %}

Établissements

Gérez les différents sites et lieux de travail de votre organisation.

Retour Exporter {% if is_granted('EMPLOYEE_ESTABLISHMENT_CREATE') %} Nouvel établissement {% endif %}
Total{{ establishment_stats.total|default(items|length) }}
Actifs{{ establishment_stats.active|default(0) }}
Inactifs{{ establishment_stats.inactive|default(0) }}
Salariés{{ establishment_stats.employees|default(0) }}
{% if filters|filter(v => v is not empty)|length > 0 %} {% endif %}
{% if items is not empty %}
{% for item in items %} {% endfor %}
Nom & localisation Contact Responsable Statut Salariés Actions
{{ item.nom }}
{{ item.ville ?: 'Ville non renseignée' }}{% if item.codePostal %}, {{ item.codePostal }}{% endif %}
{{ item.email ?: '-' }}
{{ item.telephone ?: '-' }}
{% if item.responsable %}
{{ item.responsable.prenom }} {{ item.responsable.nom }}
{% else %} Non renseigné {% endif %}
{% if item.estPrincipal %} Principal {% endif %} {{ item.actif ? 'Actif' : 'Inactif' }}
{{ salarie_counts[item.id]|default(0) }}
{% if is_granted('EMPLOYEE_ESTABLISHMENT_EDIT') %} Modifier {% endif %} {% if is_granted('EMPLOYEE_ESTABLISHMENT_DISABLE') %}
{% endif %}
{% else %}
Aucun établissement Ajustez vos filtres ou créez un nouvel établissement.
{% endif %}
{% endblock %}