+ |
{% trans "Part name" %} |
{{ part.name }} |
{% if part.IPN %}
+ |
{% trans "IPN" %} |
{{ part.IPN }} |
{% endif %}
{% if part.revision %}
+ |
{% trans "Revision" %} |
{{ part.revision }} |
{% endif %}
+ |
{% trans "Description" %} |
{{ part.description }} |
{% if part.variant_of %}
+ |
{% trans "Variant Of" %} |
{{ part.variant_of.full_name }} |
{% endif %}
{% if part.keywords %}
+ |
{% trans "Keywords" %} |
{{ part.keywords }} |
{% endif %}
{% if part.URL %}
- {% trans "URL" %} |
+ |
+ {% trans "Link" %} |
{{ part.URL }} |
{% endif %}
+ |
{% trans "Category" %} |
{% if part.category %}
@@ -61,12 +69,14 @@
|
{% if part.default_location %}
+ |
{% trans "Default Location" %} |
{{ part.default_location.pathstring }} |
{% endif %}
{% if part.default_supplier %}
+ |
{% trans "Default Supplier" %} |
{{ part.default_supplier.supplier.name }} | {{ part.default_supplier.SKU }}
@@ -74,27 +84,32 @@
|
{% endif %}
+ |
{% trans "Units" %} |
{{ part.units }} |
{% if part.minimum_stock > 0 %}
+ |
{% trans "Minimum Stock" %} |
{{ part.minimum_stock }} |
{% endif %}
+ |
{% trans "Creation Date" %} |
{{ part.creation_date }} |
{% if part.creation_user %}
+ |
{% trans "Created By" %} |
{{ part.creation_user }} |
{% endif %}
{% if part.responsible %}
+ d |
{% trans "Responsible User" %} |
{{ part.responsible }} |
diff --git a/InvenTree/stock/templates/stock/location.html b/InvenTree/stock/templates/stock/location.html
index baa7511726..aad5b2b9e8 100644
--- a/InvenTree/stock/templates/stock/location.html
+++ b/InvenTree/stock/templates/stock/location.html
@@ -37,18 +37,22 @@
{% trans "Location Details" %}
+ |
{% trans "Location Path" %} |
{{ location.pathstring }} |
+ |
{% trans "Location Description" %} |
{{ location.description }} |
+ |
{% trans "Sublocations" %} |
{{ location.children.count }} |
+ |
{% trans "Stock Items" %} |
{{ location.item_count }} |
@@ -57,10 +61,12 @@
{% trans "Stock Details" %}
+ |
{% trans "Stock Locations" %} |
{{ loc_count }} |
+ |
{% trans "Stock Items" %} |
{{ stock_count }} |