{% extends 'layouts/base.html.twig' %} {% block title %}Inventory index {% endblock %} {% block body %}

Liste des inventaires

{# #} {# #} {% for inventory in inventories %} {# #} {# #} {% else %} {% endfor %}
Type d'inventaire Identifiant Bien LocataireEquipementsPiècesObservation actions
{{ inventory.type == 0 ? 'Entrée' : 'Sortie' }} {{ inventory.identifiant }} {{ inventory.rental ? inventory.rental.property : null}} {{ inventory.rental ? inventory.rental.tenant : null }}{{ dump(inventory.equipments) }}{{ dump(inventory.pieces) }}{{ inventory.observation }} {% if (inventory.pdf is not null) %} Afficher PDF {% endif %} {% if is_granted("ROLE_EDITOR") %} Générer PDF Modifier
{% endif %}
Aucun inventaire trouvé
Nouvel inventaire
{% endblock %}