mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-30 12:36:45 +00:00
Add page title for company page
This commit is contained in:
parent
a067d9f4cd
commit
ca6bd0a999
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
|
{% block page_title %}
|
||||||
|
InvenTree | Company - {{ company.name }}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
|
{% block page_title %}
|
||||||
|
InvenTree | Company List
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class='row'>
|
<div class='row'>
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% load static %}
|
{% load static %}
|
||||||
|
|
||||||
|
{% block page_title %}
|
||||||
|
InvenTree | {{ company.name }} - Parts
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class='row'>
|
<div class='row'>
|
||||||
|
@ -4,11 +4,11 @@
|
|||||||
|
|
||||||
{% block page_title %}
|
{% block page_title %}
|
||||||
{% if part %}
|
{% if part %}
|
||||||
InvenTree Part - {{ part.name }}
|
InvenTree | Part - {{ part.name }}
|
||||||
{% elif category %}
|
{% elif category %}
|
||||||
InvenTree Part Category - {{ category }}
|
InvenTree | Part Category - {{ category }}
|
||||||
{% else %}
|
{% else %}
|
||||||
InvenTree Part List
|
InvenTree | Part List
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
@ -3,11 +3,11 @@
|
|||||||
|
|
||||||
{% block page_title %}
|
{% block page_title %}
|
||||||
{% if item %}
|
{% if item %}
|
||||||
InvenTree Stock Item - {{ item }}
|
InvenTree | Stock Item - {{ item }}
|
||||||
{% elif location %}
|
{% elif location %}
|
||||||
InvenTree Stock Location - {{ location }}
|
InvenTree | Stock Location - {{ location }}
|
||||||
{% else %}
|
{% else %}
|
||||||
InvenTree Stock
|
InvenTree | Stock
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user