{% extends 'base.html' %} {% block title %}Nouvelle commande groupée{% endblock %} {% block content %}

{% block content_title %}Ajouter des produits à votre commande groupée{% endblock %}

Retour Mes commandes

Gestion des produits - {{ grouped_order.name }}

Sur cette page, vous pouvez voir et modifier les produits qui sont inscrits à votre commande groupée.

{% url 'order:item_create' pk=grouped_order.pk as create_item_url %} {% csrf_token %} {% for item in item_list %} {% endfor %}
Nom Prix unitaire Quantité disponible (optionnel) Action
{{ item.name }} {{ item.price }} {% if item.max_limit is not null %}{{ item.max_limit }}{% else %}---{% endif %} {% if item.ordered_nb == 0 %} {% else %} Produit déjà commandé {% endif %}
Valider
{% endblock %}