From ccf823fad2466ac7562f871fb3f30e47d8b22b4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Ho=CC=88rler?= Date: Sun, 4 Feb 2018 20:18:49 +0100 Subject: [PATCH] add amount to template --- django/didgeridoo/webshop/templates/webshop/cart.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/django/didgeridoo/webshop/templates/webshop/cart.html b/django/didgeridoo/webshop/templates/webshop/cart.html index 7dd5127..637d524 100644 --- a/django/didgeridoo/webshop/templates/webshop/cart.html +++ b/django/didgeridoo/webshop/templates/webshop/cart.html @@ -8,6 +8,7 @@ ID NAME STOCK + AMOUNT PRICE {% for article in articles_list %} @@ -18,6 +19,7 @@ {{ article.article.name }} {{ article.article.stock }} + {{ article.amount }} {{ article.article.price_in_chf }} {{ currency_name }} {% endfor %}