{% extends "base.html" %} {% load static %} {% load custom_filters %} {% block contenu %} {% include "header.html" %} {% include "leftbar.html" %} {% include "rightbar.html" %} {% include "chat.html" %} Liste Commande pour Consultants Total : {{ commandes.count }} commandes Accueil Ajout Commande Code Devis Nom Consultant Objet Montant Date Exécution Actions {% for commande in commandes %} {{ commande.code_commande }} {{ commande.consultant.nom }} {{ commande.objet }} {{ commande.net_a_payer | format_number }} FCFA {{ commande.date_execution }} {% endfor %} {% endblock %}