mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Merge pull request #863 from SchrodingersGat/decimalfix
Decimalize display of variant stock
This commit is contained in:
commit
aeba189c1a
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user