diff --git a/webshop/templates/includes/order/order_taxes.html b/webshop/templates/includes/order/order_taxes.html
index 0060ab39cc..d7b9620fa0 100644
--- a/webshop/templates/includes/order/order_taxes.html
+++ b/webshop/templates/includes/order/order_taxes.html
@@ -19,7 +19,7 @@
 					{{ d.description }}
 				</div>
 				<div class="item-grand-total col-4 text-right pr-0">
-					{{ doc.get_formatted("net_total") }}
+					{{ d.get_formatted("base_tax_amount") }}
 				</div>
 			</div>
 		</div>
diff --git a/webshop/webshop/shopping_cart/cart.py b/webshop/webshop/shopping_cart/cart.py
index 109d1a40f3..a59c28e964 100644
--- a/webshop/webshop/shopping_cart/cart.py
+++ b/webshop/webshop/shopping_cart/cart.py
@@ -533,6 +533,7 @@ def set_taxes(quotation, cart_settings):
 	#
 	# 	# append taxes
 	quotation.append_taxes_from_master()
+	quotation.append_taxes_from_item_tax_template()
 
 
 def get_party(user=None):