diff --git a/InvenTree/company/templates/company/detail_part.html b/InvenTree/company/templates/company/detail_part.html index d7e45ecb82..c9de89ceda 100644 --- a/InvenTree/company/templates/company/detail_part.html +++ b/InvenTree/company/templates/company/detail_part.html @@ -1,18 +1,21 @@ {% extends "company/company_base.html" %} - +{% load static %} {% block details %} {% include 'company/tabs.html' with tab='parts' %}

Company Parts

- +
+ + + {% for part in company.parts.all %} @@ -25,12 +28,40 @@ {% endfor %} +
SKU Part MPN URL
{{ part.SKU }}{{ part.URL }}
- - - +
+{% include 'modals.html' %} + +{% endblock %} + +{% block javascript %} + + + + + + {% endblock %} \ No newline at end of file