From 97f605ef55076dc4ee72abff26ddf381627effbc Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Tue, 7 Apr 2020 00:19:51 +1000 Subject: [PATCH] Remove some weird trailing zeros --- InvenTree/stock/templates/stock/item_base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/stock/templates/stock/item_base.html b/InvenTree/stock/templates/stock/item_base.html index 949823b83b..6c38335b3e 100644 --- a/InvenTree/stock/templates/stock/item_base.html +++ b/InvenTree/stock/templates/stock/item_base.html @@ -11,7 +11,7 @@ {% if item.serialized %}

{{ item.part.full_name}} # {{ item.serial }}

{% else %} -

{{ item.quantity }} × {{ item.part.full_name }}

+

{% decimal item.quantity %} × {{ item.part.full_name }}

{% endif %}