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

Historique des paiements du consultant : {{ consultant.nom }}

Montant total : {{ total_paiement | format_number }} FCFA

{% for paiement in paiements %} {% endfor %}
Code paiement Date paiement Facture Montant payƩ
{{ paiement.code_paiement }} {{ paiement.date_paiement }} {{ paiement.facture_consultant.code_facture }} {{ paiement.montant | format_number }} FCFA
{% endblock %}