{% extends "base.html" %}
{% block title %}Factures & paiements - {{ block.super }}{% endblock %}
{% block content %}
{% if handle_balance %}
Balance : {{ balance|floatformat }} €
{% endif %}
Mes factures et reçus
Référence |
Date |
Montant |
Reste à payer |
|
{% for invoice in invoices %}
{% if invoice.type == "Invoice" %}{{ invoice.reference }}{% else %}{{ invoice.reference}}{% endif %} |
{{ 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 %}