diff --git a/InvenTree/company/templates/company/company_base.html b/InvenTree/company/templates/company/company_base.html index b9cd650395..e19e8e4e37 100644 --- a/InvenTree/company/templates/company/company_base.html +++ b/InvenTree/company/templates/company/company_base.html @@ -56,7 +56,29 @@ {% endblock %} {% block details %} -
{{ company.description }}
++ | {% trans "Description" %} | +{{ company.description }} | +
+ | {%trans "Manufacturer" %} | +{% include "yesnolabel.html" with value=company.is_manufacturer %} | +
+ | {% trans "Supplier" %} | +{% include 'yesnolabel.html' with value=company.is_supplier %} | +
+ | {% trans "Customer" %} | +{% include 'yesnolabel.html' with value=company.is_customer %} | +
+
+
+
+
+
+ {% include "spacer.html" %}
+
+
+
+ {% if part.is_template %}
+
+
+ {% endif %}
+ {% if part.assembly %}
+
+
+ {% endif %}
+ {% if part.component %}
+
+
+ {% endif %}
+ {% if part.trackable %}
+
+
+ {% endif %}
+ {% if part.purchaseable %}
+
+
+ {% endif %}
+ {% if part.salable %}
+
+
+ {% endif %}
+
+ {% if not part.active %}
+
+
+ |
+ ||
{% trans "Part Name" %} | diff --git a/InvenTree/stock/templates/stock/item_base.html b/InvenTree/stock/templates/stock/item_base.html index 111007cd71..37ff88073b 100644 --- a/InvenTree/stock/templates/stock/item_base.html +++ b/InvenTree/stock/templates/stock/item_base.html @@ -148,8 +148,6 @@ {% endif %} - -