{% extends "layouts/base.html" %} {% block title %} Lots {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
{% include 'includes/navigation.html' %}

Listes des lots

{% csrf_token %}
{% for article in articles %} {% endfor %}
  
{% for lot in lots %} {% endfor %}
# UPC Article Stock dispo Date d'arrivage Prix achat Revenus
{{lot.numero_lot}} {{lot.upc|default:'/'}} {{lot.article.nom_article}} {{lot.quantitee}} {{lot.date_arrivage}}
{{lot.infosachat.prix_de_revient}}
{{lot.revenu}}
{% csrf_token %}
 
{% csrf_token %}
 
{% csrf_token %}
{% include 'includes/footer.html' %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}