{% extends 'base.html.twig' %} {% block title %}Animal - Liste{% endblock %} {% block breadcrumb %} {% endblock %} {% block body %}

Liste des animaux

{% block search %}
{#
#}
{% endblock %} {% for animal in animals %} {% else %} {% endfor %}
Photo Nom Type Date de naissance ASC Adopté Actions
{{ include('animal/_show_main_picture.html.twig',{'animal':animal,'img_class':'img-list'}) }} {{ animal.name }} {{ animal.getType().name }} {{ animal.dateBirth ? animal.dateBirth|date('d/m/Y') : '' }} {{ animal.isAdopted() ? (animal.getCurrentAdoption().getTypeAdoption() == constant('App\\Entity\\FamilyAnimal::TYPE_DEFINITIVE') ? "Définitive" : "Famille d'accueil") : "Non" }}  Afficher  Modifier
Aucun animal à afficher
{{ paginer|raw }} {% endblock %}