{% extends 'base.html.twig' %} {% block title %} {{ parent() }} Animaux {% endblock %} {% block body %}

Liste des animaux



{% for animal in animaux %}

{{ animal.nom }}

Date de naissance : {{ animal.dateNaissance|date('d/m/Y') }}

{% if animal.dateDeces %}

Date de décès : {{ animal.dateDeces|date('d/m/Y') }}

{% endif %}

Pays d’origine : {{ animal.paysOrigine }}

{{ animal.description|length > 100 ? animal.description|slice(0, 100) ~ '...' : animal.description }}

{{ animal.nom }}
{% else %}

Aucun animal trouvé.

{% endfor %}


{% endblock %}