Total{{ establishment_stats.total|default(items|length) }}
{% extends '@App/app.html.twig' %} {% block title %}Établissements{% endblock %} {% block page_header %}{% endblock %} {% block content %}
Gérez les différents sites et lieux de travail de votre organisation.
| Nom & localisation | Contact | Responsable | Statut | Salariés | Actions | |
|---|---|---|---|---|---|---|
|
{{ item.nom }}
|
{{ 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 %}
|