- {% if cart_items %}
-
-
-
- {% for item in cart_items %}
-
- | {{ item.product.title }} |
-
-
-
- {{ item.color.name }} | {{ item.size.name }}
-
- |
-
-
-
-
- |
- {{ item.get_total_price }} € |
-
-
- |
-
- {% endfor %}
-
-
-
- | {{ total_quantity }} produit(s) |
- |
- |
- {{ total }} € |
- |
-
-
-
+ {% if display_data.items %}
+ {% include 'shop/partials/order_items_display.html' with items=display_data.items total_quantity=display_data.total_quantity total_price=display_data.total_price edit_mode=True %}
@@ -207,13 +37,29 @@
{% endif %}
- {% if cart_items %}
+ {% if display_data.items %}
Vider le panier
{% endif %}
+
+ {% if settings.DEBUG %}
+
+
Debug Payment Simulation
+
+
+ {% endif %}
+
Votre panier est vide.