{% extends 'base.html.twig' %} {% block title %}Gestion des locations en cours {{ parent() }}{% endblock %} {% block body %}
Locataire | Date de début | Date de fin | Bien concerné | Location | Actions |
---|---|---|---|---|---|
{{ rental.tenant.name }} | {{ rental.dateStart ? rental.dateStart|date('d/m/Y') : '' }} | {{ rental.dateEnd ? rental.dateEnd|date('d/m/Y') : '' }} | {{ rental.property.title }} | Consulter la location |
{% if app.user.roles[0] == "ROLE_ADMIN" %}
{{ include('rental/_delete_form.html.twig') }}
{% endif %}
|
Aucun enregistrement trouvé |