{# Barre de recherche #}
{% include '_atoms/icon/icon.html.twig' with { name: 'search', size: 'sm', color: 'gray' } only %}
{% include '_atoms/button/button.html.twig' with { label: 'Rechercher', variant: 'primary', icon: 'search', size: 'md', type: 'submit' } only %}
{# Liste des utilisateurs #} {% if users|length > 0 %}
{% for user in users %} {% endfor %}
{# Pagination #} {% if pagination.total > 1 %}
{{ pagination.totalItems }} utilisateur{{ pagination.totalItems > 1 ? 's' : '' }}
{% if pagination.current > 1 %} {% include '_atoms/icon/icon.html.twig' with { name: 'chevron-left', size: 'sm', color: 'gray' } only %} {% endif %} {% for p in 1..pagination.total %} {{ p }} {% endfor %} {% if pagination.current < pagination.total %} {% include '_atoms/icon/icon.html.twig' with { name: 'chevron-right', size: 'sm', color: 'gray' } only %} {% endif %}
{% endif %} {% else %} {% include '_molecules/empty-state/empty-state.html.twig' with { title: search ? 'Aucun résultat' : 'Aucun utilisateur', description: search ? 'Modifiez votre recherche.' : null, icon: 'users', size: 'sm' } only %} {% endif %}