{# templates/pagination/compact_pagination.html.twig #} {% if pageCount > 1 %} {# Navigation précédent/suivant #} {% if previous is defined %} {{ 'pagination.previous'|trans }} {% else %} {{ 'pagination.previous'|trans }} {% endif %} {% if next is defined %} {{ 'pagination.next'|trans }} {% else %} {{ 'pagination.next'|trans }} {% endif %} {# Informations sur la page #} {{ current }} / {{ pageCount }} {% if totalCount is defined %} ({{ totalCount }} {{ 'pagination.items'|trans }}) {% endif %} {% else %}