diff --git a/InvenTree/stock/templates/stock/stock_app_base.html b/InvenTree/stock/templates/stock/stock_app_base.html index 6071499863..e651efb813 100644 --- a/InvenTree/stock/templates/stock/stock_app_base.html +++ b/InvenTree/stock/templates/stock/stock_app_base.html @@ -1,6 +1,16 @@ {% extends "base.html" %} {% load static %} +{% block page_title %} +{% if item %} +InvenTree Stock Item - {{ item }} +{% elif location %} +InvenTree Stock Location - {{ location }} +{% else %} +InvenTree Stock +{% endif %} +{% endblock %} + {% block sidenav %}
{% endblock %} diff --git a/InvenTree/templates/base.html b/InvenTree/templates/base.html index 90925cfe7e..953dbb1272 100644 --- a/InvenTree/templates/base.html +++ b/InvenTree/templates/base.html @@ -40,7 +40,7 @@ {% endblock %}