diff --git a/InvenTree/part/templates/part/part_base.html b/InvenTree/part/templates/part/part_base.html index d7b196917d..5191399f0a 100644 --- a/InvenTree/part/templates/part/part_base.html +++ b/InvenTree/part/templates/part/part_base.html @@ -10,132 +10,253 @@ {% block content %} -
+
{{ part.description }}
- {% endif %} --
{% trans "Available Stock" %} |
+ {% decimal available %}{% if part.units %} {{ part.units }}{% endif %} |
+ |
+ | {% trans "In Stock" %} | +{% include "part/stock_count.html" %} | +
+ | {% trans "On Order" %} | +{% decimal on_order %} | +
+ | {% trans "Required for Build Orders" %} | +{% decimal required_build_order_quantity %} + |
+ | {% trans "Required for Sales Orders" %} | +{% decimal required_sales_order_quantity %} + |
+ | {% trans "Allocated to Orders" %} | +{% decimal allocated %} | +
+ {% trans "Build Status" %}+ |
+ ||
+ | {% trans "Can Build" %} | +{% decimal part.can_build %} | +
+ | {% trans "Building" %} | +{% decimal quantity_being_built %} | +
+
+
+ | {% trans "IPN" %} | +{{ part.IPN }}{% include "clip.html"%} | +|
+ | {% trans "Name" %} | +{{ part.name }}{% include "clip.html"%} | +|
+ | {% trans "Description" %} | +{{ part.description }}{% include "clip.html"%} | +|
+ | {% trans "Revision" %} | +{{ part.revision }}{% include "clip.html"%} | +|
{% trans "Keywords" %} | -{{ part.keywords }} | +{{ part.keywords }}{% include "clip.html"%} | |
{% trans "External Link" %} | -{{ part.link }} | +{{ part.link }}{% include "clip.html"%} | |
{% trans "Latest Serial Number" %} | {{ part.getLatestSerialNumber }}{% include "clip.html"%} | ||
+ | {% trans "Default Location" %} | +{{ part.default_location }} | +|
+ | {% trans "Default Supplier" %} | +{{ part.default_supplier }} | +
- |
- {% trans "Available Stock" %}- |
- {% decimal available %}{% if part.units %} {{ part.units }}{% endif %} |
-
- | {% trans "In Stock" %} | -{% include "part/stock_count.html" %} | -
- | {% trans "On Order" %} | -{% decimal on_order %} | -
- | {% trans "Required for Build Orders" %} | -{% decimal required_build_order_quantity %} - |
- | {% trans "Required for Sales Orders" %} | -{% decimal required_sales_order_quantity %} - |
- | {% trans "Allocated to Orders" %} | -{% decimal allocated %} | -
- | - {% trans "Build Status" %} - | -|
- | {% trans "Can Build" %} | -{% decimal part.can_build %} | -
- | {% trans "Building" %} | -{% decimal quantity_being_built %} | -