From 075f1cfbf6e1e8e062a89cfca42e0a46af4bc394 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Sun, 7 Apr 2019 17:13:02 +0200 Subject: [PATCH] Use Product.label in order table --- copanier/templates/includes/order_summary.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copanier/templates/includes/order_summary.html b/copanier/templates/includes/order_summary.html index ca069f7..abbfb37 100644 --- a/copanier/templates/includes/order_summary.html +++ b/copanier/templates/includes/order_summary.html @@ -3,7 +3,7 @@ {% for product in delivery.products %} {% if order.get_quantity(product) %} - {{ product.name }} + {{ product.label }} {{ product.price }} €{{ order.get_quantity(product) }} {% endif %}