diff --git a/InvenTree/InvenTree/urls.py b/InvenTree/InvenTree/urls.py index 312ee2f00f..8c20fe9282 100644 --- a/InvenTree/InvenTree/urls.py +++ b/InvenTree/InvenTree/urls.py @@ -26,8 +26,6 @@ from track.urls import tracking_urls from users.urls import user_urls -from . import views - admin.site.site_header = "InvenTree Admin" apipatterns = [ diff --git a/InvenTree/part/templates/part/bom.html b/InvenTree/part/templates/part/bom.html index a15994c488..f3db81216f 100644 --- a/InvenTree/part/templates/part/bom.html +++ b/InvenTree/part/templates/part/bom.html @@ -4,7 +4,7 @@ {% include 'part/tabs.html' with tab='bom' %} - +
diff --git a/InvenTree/part/templates/part/stock.html b/InvenTree/part/templates/part/stock.html index aa5c099abb..49fbb9736a 100644 --- a/InvenTree/part/templates/part/stock.html +++ b/InvenTree/part/templates/part/stock.html @@ -8,7 +8,7 @@ Total in stock: {{ part.stock }}
-
Part Description
+
diff --git a/InvenTree/part/templates/part/supplier.html b/InvenTree/part/templates/part/supplier.html index aa20f447a7..e6a26c3781 100644 --- a/InvenTree/part/templates/part/supplier.html +++ b/InvenTree/part/templates/part/supplier.html @@ -5,7 +5,7 @@ {% include 'part/tabs.html' with tab='suppliers' %} {% if part.supplier_parts.all|length > 0 %} -
Quantity Location
+
@@ -15,7 +15,11 @@ - + {% endfor %}
Supplier SKU
{{ spart.supplier.name }} {{ spart.SKU }}{{ spart.URL }} + {% if spart.URL %} + {{ spart.URL }} + {% endif %} +
diff --git a/InvenTree/part/templates/part/tabs.html b/InvenTree/part/templates/part/tabs.html index a81a98398c..1c244c40b2 100644 --- a/InvenTree/part/templates/part/tabs.html +++ b/InvenTree/part/templates/part/tabs.html @@ -1,6 +1,9 @@