2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-01 03:00:54 +00:00

Rendering of decimal value on stockitem page

This commit is contained in:
Oliver Walters
2019-11-19 09:10:47 +11:00
parent 4e1b9efe93
commit 20755a6dac
2 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,6 @@
{% extends "stock/stock_app_base.html" %}
{% load static %}
{% load inventree_extras %}
{% load i18n %}
{% block content %}
@ -86,7 +87,7 @@
{% else %}
<tr>
<td>{% trans "Quantity" %}</td>
<td>{{ item.quantity }}</td>
<td>{% decimal item.quantity %}</td>
</tr>
{% endif %}
{% if item.batch %}