{% extends "layouts/base.html" %} {% block title %} Bon de commande {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% load poll_extras %} {% block content %} {% include 'includes/navigation.html' %} Liste des clients   Modifier bon de commande {% csrf_token %} Nom du fournisseur* sélectionner fournisseur {% for fournisseur in liste_fournisseurs %} {% if fournisseur.id == bn_commande.fournisseur.id %} {{fournisseur.nom}} {{fournisseur.prenom}} {% else %} {{fournisseur.nom}} {{fournisseur.prenom}} {% endif %} {% endfor %} Date* Date de paiement Détails de l’article Ajouter L’article Quantité Taux Taxe Montant {% for article in liste_articles %} Qantite : {{article.stock_comptable_disponible}} {% endfor %} {% for art in liste_article %} {% for article in liste_articles %} Qantite : {{article.stock_comptable_disponible}} {% endfor %} description {{art.description}} {% endfor %} Ajouter une autre ligne Note {{bn_commande.note|default:'/'}} Sous-total Remise Total ( DZD ) Enregistrer {% include 'includes/footer.html' %} {% endblock content %} {% block javascripts %} {% endblock javascripts %}