{% extends "base.html" %}
{% block title %}Factures & paiements - {{ block.super }}{% endblock %}
{% block content %}
{% if handle_balance %}
Solde : {{ balance|floatformat }} €
{% endif %}
Mes factures
Numéro |
Date |
Montant |
Reste à payer |
|
{% for invoice in invoices %}
{{ invoice.number }} |
{{ invoice.date }} |
{{ invoice.amount }} |
0 %} class="unpaid"{% endif %}>{{ invoice.amount_remaining_to_pay }} |
{% if invoice.validated %} PDF{% endif %} |
{% empty %}
Aucune facture. |
{% endfor %}
Mes paiements
Date |
Montant |
Alloué |
{% for payment in payments %}
{{ payment.date }} |
{{ payment.amount }} |
{{ payment.amount_already_allocated }} |
{% empty %}
Aucun paiement. |
{% endfor %}
Coordonnées bancaires
{% include "billing/payment_howto.html" %}
{% endblock %}