{% for speciesGroup in fellowsBySpecies %}
|
{{ speciesGroup.species.name }}
|
{% for fellowData in speciesGroup.fellows %}
{% set fellow = fellowData.fellow %}
| {{ fellow.name }} |
{{ fellow.sex }} |
{% if fellow.type is same as('adult') %}
{{ fellow.arrivalAt ? fellow.arrivalAt|date('d/m/Y') : 'Date d\'arrivée inconnue' }} |
{% else %}
{{ fellow.birthday ? fellow.birthday|date('d/m/Y') : 'Date de naissance inconnue' }} |
{% endif %}
{{ fellowData.entrerAt|date('d/m/Y') }} |
Voir la fiche
|
{% endfor %}
{% else %}
|
Aucun individu trouvé.
|
{% endfor %}