Decimalize display of variant stock

(cherry picked from commit 6e45360c4b7a6bc91f584f498fb6e1988593db95)
This commit is contained in:
Oliver Walters 2020-06-09 13:30:34 +10:00
parent b2c302cb2c
commit 09400fd66b

View File

@ -1,5 +1,6 @@
{% extends "part/part_base.html" %}
{% load static %}
{% load inventree_extras %}
{% block details %}
{% include "part/tabs.html" with tab='variants' %}
@ -40,7 +41,7 @@
{% endif %}
</td>
<td>{{ variant.description }}</td>
<td>{{ variant.total_stock }}</td>
<td>{% decimal variant.total_stock %}</td>
</tr>
{% endfor %}
</tbody>