diff --git a/InvenTree/part/templates/part/part_base.html b/InvenTree/part/templates/part/part_base.html index f4e3df8343..85f15967ca 100644 --- a/InvenTree/part/templates/part/part_base.html +++ b/InvenTree/part/templates/part/part_base.html @@ -43,26 +43,12 @@
In Stock | -- {% if part.stock == 0 %} - {{ part.total_stock }} - {% elif part.stock < part.minimum_stock %} - {{ part.total_stock }} - {% else %} - {{ part.total_stock }} - {% endif %} - | +{{ part.total_stock }} |
Can Build | -- {% if part.can_build == 0 %} - 0 - {% else %} - {{ part.can_build }} - {% endif %} - | +{{ part.can_build }} |
Allocated | - {% if part.allocation_count > part.total_stock %} -{{ part.allocation_count }} | - {% else %}{{ part.allocation_count }} | - {% endif %}