From 3de80fe059cd4bde71e84af3cbdb83c45cd1bdf4 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 27 Apr 2018 22:14:25 +1000 Subject: [PATCH] Modalized 'new-supplier-part' from supplier page --- .../templates/company/detail_part.html | 41 ++++++++++++++++--- 1 file changed, 36 insertions(+), 5 deletions(-) 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