mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Removed old templates
This commit is contained in:
parent
dec90f597d
commit
f80918554d
@ -1,21 +0,0 @@
|
||||
{# Construct the category path #}
|
||||
<a href="../">Category</a>/
|
||||
{% for path_item in category.parentpath %}
|
||||
<a href="../{{ path_item.pk }}">{{ path_item.name }}</a>/
|
||||
{% endfor %}
|
||||
|
||||
{{ category.name }}
|
||||
|
||||
<br><br>Children:<br>
|
||||
{% for child in children %}
|
||||
<a href="/part/category/{{ child.pk }}">{{ child.name }}</a><br>
|
||||
{% endfor %}
|
||||
|
||||
<br>
|
||||
<br>
|
||||
Parts:
|
||||
<br>
|
||||
|
||||
{% for part in category.part_set.all %}
|
||||
<a href="/part/{{ part.pk }}">{{ part.name }}</a><br>
|
||||
{% endfor %}
|
@ -1,8 +0,0 @@
|
||||
Top Level Part Categories:
|
||||
|
||||
{% for category in categories %}
|
||||
|
||||
<br>
|
||||
<a href="./{{ category.pk }}">{{ category.name }}<a/>
|
||||
|
||||
{% endfor %}
|
@ -1,4 +0,0 @@
|
||||
{{part}}
|
||||
|
||||
<br>
|
||||
Category: <a href="/part/category/{{ part.category.pk}}">{{ part.category }}</a>
|
@ -1,8 +0,0 @@
|
||||
Warehouses:
|
||||
|
||||
{% for warehouse in warehouse %}
|
||||
|
||||
<br>
|
||||
<a href="./{{ warehouse.pk }}">{{ warehouse.name }}</a>
|
||||
|
||||
{% endfor %}
|
@ -1 +0,0 @@
|
||||
{{ supplier }}
|
Loading…
Reference in New Issue
Block a user