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 %}