From 5c93a05524873347cc755971ae638c9cab1a613d Mon Sep 17 00:00:00 2001
From: Alexis Metaireau
{{ product }}
- {{ product.price }} €
+ {{ product.price | round(2) }} €
{% if delivery.has_packing %}
{{ product.packing or '—'}}
{% endif %}
diff --git a/copanier/templates/includes/order_summary.html b/copanier/templates/includes/order_summary.html
index cbb1bba..ea3020f 100644
--- a/copanier/templates/includes/order_summary.html
+++ b/copanier/templates/includes/order_summary.html
@@ -4,7 +4,7 @@
{% if order[product].quantity %}
{% endif %}
{% endfor %}
diff --git a/copanier/templates/place_order.html b/copanier/templates/place_order.html
index eaba9b3..8c0d84c 100644
--- a/copanier/templates/place_order.html
+++ b/copanier/templates/place_order.html
@@ -27,7 +27,7 @@
{% endwith %}
{% endif %}{{ product }}
- {{ product.price }} € {{ order[product].quantity }}
+ {{ product.price | round(2) }} € {{ order[product].quantity }}