{% load i18n portail_citoyen_tags %}

{% trans "Mes factures" %}

{% trans "Liste des factures en cours et déjà acquitées." %}

{% with data=factures_all.data %} {% if data.invoices %} {% for facture in data.invoices %} {% endfor %} {% else %}

{% trans "Aucune facture n'est disponible en ligne pour votre compte." %}

{% endif %}
Date Montant Statut
{{ facture.id }} {{ facture.creation_date|to_date|date:"d/m/Y" }} {{ facture.montant }}€

{% if not facture.paid and not facture.expired and not facture.prelevement_automatique and not facture.date_passage_perception %} {% trans "A payer" %} {% else %} {% trans "Payé" %} {% endif %}

PDF - {% trans 'Voir' %} {% if not facture.prelevement_automatique and not facture.expired %} {% with solde=facture.solde|to_decimal %} {% if solde >= 1 %} {% trans "et régler en ligne" %} {% endif %} {% endwith %} {% endif %}

{% endwith %}