{% extends '@App/app.html.twig' %} {% block title %}Salariés{% endblock %} {% block page_header %}{% endblock %} {% block content %}

Salariés

Gérez les dossiers salariés, leurs rattachements et leur statut RH.

{% if is_granted('EMPLOYEE_IMPORT') %} Importer {% endif %} {% if is_granted('EMPLOYEE_EXPORT') %} Exporter {% endif %} {% if is_granted('EMPLOYEE_CREATE') %} Nouveau salarié {% endif %}
Total {{ employee_stats.total|default(salaries|length) }} salariés suivis Dossiers RH
Actifs {{ employee_stats.active|default(0) }} salariés en poste Effectif actif
Onboarding {{ employee_stats.onboarding|default(0) }} arrivées en cours À accompagner
Inactifs {{ employee_stats.inactive|default(0) }} sortis ou archivés Historique
{% include '@Employee/employee/_filters.html.twig' %} {% include '@Employee/employee/_table.html.twig' with {salaries: salaries} %}
{% endblock %}