{% load static %}

Solde total à payer : {{data.amount|decimal:2}}€

Alimenter le portefeuille Payer l'intégralité de la somme dûe
{% if data.items.unpaid_invoices %}

Factures IMPAYÉES

FACTURE
DATE
TOTAL
SOLDE
PAYER
TÉLÉCHARGER
{% for facture in data.items.unpaid_invoices %}
{{ facture.name }}
{{ facture.structured_communication }}
{{ facture.emission_date }}
{{ facture.total_amount|decimal:2 }}€
{{ facture.due_amount|decimal:2}}€
{% endfor %}
{% endif %} {% if data.items.paid_invoices %}

Factures PAYÉES

FACTURE
DATE
ÉCHÉANCE
TOTAL
TÉLÉCHARGER
{% for facture in data.items.paid_invoices %}
{{ facture.name }}
{{ facture.structured_communication }}
{{ facture.emission_date }}
{{ facture.due_date }}
{{ facture.total_amount|decimal:2 }}€
{% endfor %}
{% endif %}
Retour au portail parent