{% extends "base.html" %} {% block content %} {% if handle_balance %}

Balance : {{ balance|floatformat }} €

{% endif %}

Mes factures

{% for invoice in invoices %} 0 %} class="unpaid"{% endif %}>{{ invoice.amount_remaining_to_pay }} {% empty %} {% endfor %}
Numéro Date Montant Reste à payer
{{ invoice.number }} {{ invoice.date }} {{ invoice.amount }} {% if invoice.validated %} PDF{% endif %}
Aucune facture.

Mes paiements

{% for payment in payments %} {% empty %} {% endfor %}
Date Montant Alloué
{{ payment.date }} {{ payment.amount }} {{ payment.amount_already_allocated }}
Aucun paiement.

Coordonnées bancaires

{% include "billing/payment_howto.html" %}
{% endblock %}