{% extends 'base.html.twig' %} {% block title %}Animal - Liste{% endblock %} {% block breadcrumb %} {% endblock %} {% block body %}
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 |