2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 21:45:39 +00:00

Add list page for tracking info

- Needs filtering (currently displays ALL unique parts)
This commit is contained in:
Oliver
2018-04-15 12:07:14 +10:00
parent cb5e2f1a8c
commit 9f42085731
8 changed files with 133 additions and 21 deletions

View File

@ -77,7 +77,7 @@ part_urls = [
# Top level part list (display top level parts and categories)
url('', views.PartIndex.as_view(), name='part-index'),
url(r'^.*$', RedirectView.as_view(url='list', permanent=False), name='part-index'),
url(r'^.*$', RedirectView.as_view(url='', permanent=False), name='part-index'),
]