{% extends "base.html" %} {% load static %} {% load custom_filters %} {% block contenu %} {% include "header.html" %} {% include "leftbar.html" %} {% include "rightbar.html" %} {% include "chat.html" %}

Liste Factures Clients Total : {{ factures.count }} factures

{% for facture in factures %} {% endfor %}
Code Facture Nom Client Montant Paiement Reste à Payer Statut Actions
{{ facture.code_facture }} {{ facture.client.nom }} {{ facture.net_a_payer | format_number}} FCFA {{ facture.montant_paiements | format_number }} FCFA {{ facture.montant_restant | format_number}} FCFA {% if facture.statut == "Payé" %} {% elif facture.statut == "Partiel" %} {% elif facture.statut == "Impayé" %} {% endif %}
{% endblock %}