{# Pagination Wrapper Component Provides consistent pagination layout across all admin list pages Usage: {% include 'admin/components/pagination_wrapper.html.twig' with { 'pagination': users, 'showItemCount': true } %} #} {% if pagination.pageCount > 1 %}
{# Mobile pagination #}
{% if pagination.currentPageNumber > 1 %} Précédent {% else %} Précédent {% endif %} {% if pagination.currentPageNumber < pagination.pageCount %} Suivant {% else %} Suivant {% endif %}
{# Desktop pagination #}
{% endif %}