{% block stylesheets %} {% endblock %} {% block body %} {% if property|length %}
Prénom | Nom | Sommes versées | Arriérés | Dépenses | {% if app.user.isOwner == true %}ACTIONS | {% endif %}
---|---|---|---|---|---|
{{ tenant.firstname }} | {{ tenant.lastname }} | {% for rent in tenant.rents %} {% if rent.dateFocus|date('Y-m') == dateNow %} {% if tenant.price > rent.amount %}{{ rent.amount }} € | {% else %}{{ rent.amount }} € | {% endif %}
{% if tenant.totalDebtToPay > 0 %}
Dette : {{ tenant.totalDebtToPay(tenant.getLastRentByDate(dateObject)) }} € {% endif %} {% if tenant.totalDebtToPay + tenant.price > tenant.price %}Loyer à payer : {{ tenant.totalDebtToPay + tenant.price }} € {% endif %} |
{% endif %} {% endfor %} |