diff --git a/InvenTree/static/css/inventree.css b/InvenTree/static/css/inventree.css index 70cee55d51..e23039a58e 100644 --- a/InvenTree/static/css/inventree.css +++ b/InvenTree/static/css/inventree.css @@ -47,7 +47,7 @@ margin-right: 50px; margin-left: 50px; width: 100%; - transition: 0.1s; + //transition: 0.1s; } .body { @@ -88,7 +88,7 @@ position: fixed; /* Stay in place */ background-color: #fff; /* Black*/ overflow-x: hidden; /* Disable horizontal scroll */ - transition: 0.1s; /* 0.5 second transition effect to slide in the sidenav */ + //transition: 0.1s; /* 0.5 second transition effect to slide in the sidenav */ } .wrapper { diff --git a/InvenTree/stock/templates/stock/index.html b/InvenTree/stock/templates/stock/index.html deleted file mode 100644 index 2409af6c71..0000000000 --- a/InvenTree/stock/templates/stock/index.html +++ /dev/null @@ -1,47 +0,0 @@ -{% extends "base.html" %} -{% load static %} -{% block content %} - -{% include "stock/loc_link.html" with location=None %} - -
-
-

Storage Locations

-
-
-

- -

-
-
- -
- -{% if locations|length > 0 %} -{% include "stock/location_list.html" with locations=locations %} -
-{% endif %} -

Stock Items

- -
- -{% include 'modals.html' %} - -{% endblock %} - -{% block js_load %} - -{% endblock %} -{% block js_ready %} - - $('#location-create').click(function () { - launchModalForm("#modal-form", - "{% url 'stock-location-create' %}", - { - follow: true - }); - }); - - {% include "stock/stock_table.html" %} - -{% endblock %} \ No newline at end of file diff --git a/InvenTree/stock/templates/stock/item.html b/InvenTree/stock/templates/stock/item.html index efb703976c..50a839f52c 100644 --- a/InvenTree/stock/templates/stock/item.html +++ b/InvenTree/stock/templates/stock/item.html @@ -1,9 +1,7 @@ -{% extends "base.html" %} +{% extends "stock/stock_app_base.html" %} {% load static %} {% block content %} -{% include "stock/loc_link.html" with location=item.location %} -

Stock entry details

@@ -109,8 +107,6 @@ -{% include 'modals.html' %} - {% endblock %} {% block js_load %} diff --git a/InvenTree/stock/templates/stock/loc_link.html b/InvenTree/stock/templates/stock/loc_link.html index 34f10f33f7..7da211e58c 100644 --- a/InvenTree/stock/templates/stock/loc_link.html +++ b/InvenTree/stock/templates/stock/loc_link.html @@ -1,6 +1,7 @@
-{% endif %}