diff --git a/InvenTree/stock/templates/stock/item.html b/InvenTree/stock/templates/stock/item.html index d380ea3369..19295d1198 100644 --- a/InvenTree/stock/templates/stock/item.html +++ b/InvenTree/stock/templates/stock/item.html @@ -3,6 +3,7 @@ {% load static %} {% load inventree_extras %} {% load i18n %} +{% load l10n %} {% load markdownify %} {% block menubar %} @@ -152,7 +153,7 @@ { stock_item: {{ item.pk }}, part: {{ item.part.pk }}, - quantity: {{ item.quantity }}, + quantity: {{ item.quantity|unlocalize }}, } ); @@ -395,4 +396,4 @@ url: "{% url 'api-stock-tracking-list' %}", }); -{% endblock %} \ No newline at end of file +{% endblock %}