mirror of
https://github.com/inventree/InvenTree.git
synced 2025-08-14 07:31:10 +00:00
Added a categorylist page
Displays list of all top-level part categories
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
{# Construct the category path #}
|
||||
<a href="../">Category</a>/
|
||||
{% for path_item in category.path %}
|
||||
<a href="../{{ path_item.pk }}">{{ path_item.name }}</a>/
|
||||
{% endfor %}
|
||||
|
8
InvenTree/part/templates/part/categorylist.html
Normal file
8
InvenTree/part/templates/part/categorylist.html
Normal file
@@ -0,0 +1,8 @@
|
||||
Top Level Part Categories:
|
||||
|
||||
{% for category in categories %}
|
||||
|
||||
<br>
|
||||
<a href="./{{ category.pk }}">{{ category.name }}<a/>
|
||||
|
||||
{% endfor %}
|
Reference in New Issue
Block a user