{% extends 'base.html.twig' %} {% block main %} {% set buttonBis = null %} {% if criteria.class or criteria.ordre or criteria.family or criteria.sex or criteria.type or criteria.dateFrom or criteria.dateTo or criteria.pending or criteria.sterilized or criteria.status %} {% set buttonBis %} {% endset %} {% endif %}

Liste des individus - {{ totalFellows|number_format('0', '', ' ') }}

{{ buttonBis|raw }}
{% for fellow in fellows %} {{ component('card_fellow', {fellow: fellow}) }} {% else %}

Aucun individu n'a été trouvé.

{% endfor %}
{% if totalPages > 1 %}
{% if currentPage > 1 %} « {% endif %} {% set start = max(1, currentPage - 2) %} {% set end = min(totalPages, currentPage + 2) %} {% if (end - start) < 4 %} {% if start == 1 %} {% set end = min(totalPages, start + 4) %} {% elseif end == totalPages %} {% set start = max(1, end - 4) %} {% endif %} {% endif %} {% if start > 1 %} ... {% endif %} {% for p in start..end %} {{ p }} {% endfor %} {% if end < totalPages %} ... {% endif %} {% if currentPage < totalPages %} » {% endif %}
{% endif %}
{% endblock %}