diff --git a/InvenTree/part/templates/part/detail.html b/InvenTree/part/templates/part/detail.html index 2266b39048..38706640f5 100644 --- a/InvenTree/part/templates/part/detail.html +++ b/InvenTree/part/templates/part/detail.html @@ -37,6 +37,18 @@ +
+
+
+

{% trans "Part Scheduling" %}

+ {% include "spacer.html" %} +
+
+
+ {% include "part/part_scheduling.html" %} +
+
+
diff --git a/InvenTree/part/templates/part/part_scheduling.html b/InvenTree/part/templates/part/part_scheduling.html new file mode 100644 index 0000000000..3e701252c7 --- /dev/null +++ b/InvenTree/part/templates/part/part_scheduling.html @@ -0,0 +1,4 @@ +{% load i18n %} +{% load inventree_extras %} + + \ No newline at end of file diff --git a/InvenTree/part/templates/part/part_sidebar.html b/InvenTree/part/templates/part/part_sidebar.html index 82246da559..7876e56fce 100644 --- a/InvenTree/part/templates/part/part_sidebar.html +++ b/InvenTree/part/templates/part/part_sidebar.html @@ -44,6 +44,8 @@ {% trans "Sales Orders" as text %} {% include "sidebar_item.html" with label="sales-orders" text=text icon="fa-truck" %} {% endif %} +{% trans "Scheduling" as text %} +{% include "sidebar_item.html" with label="scheduling" text=text icon="fa-calendar-alt" %} {% if part.trackable %} {% trans "Test Templates" as text %} {% include "sidebar_item.html" with label="test-templates" text=text icon="fa-vial" %}