2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-14 19:15:41 +00:00

Merge pull request #281 from SchrodingersGat/page-title

Page title
This commit is contained in:
Oliver
2019-05-09 18:33:03 +10:00
committed by GitHub
11 changed files with 55 additions and 1 deletions

View File

@ -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 %}
<div id='stock-tree'></div>
{% endblock %}