2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-17 17:11:09 +00:00

Added 'Parametric Table' tab to category detail view, added part_count to 'Parts' tab

This commit is contained in:
eeintech
2020-09-29 15:16:12 -05:00
parent 9e4a599c44
commit 6b48977e7b
7 changed files with 109 additions and 2 deletions

View File

@@ -77,7 +77,8 @@ part_category_urls = [
url(r'^edit/?', views.CategoryEdit.as_view(), name='category-edit'),
url(r'^delete/?', views.CategoryDelete.as_view(), name='category-delete'),
url('^.*$', views.CategoryDetail.as_view(), name='category-detail'),
url(r'^parametric/?', views.CategoryDetail.as_view(template_name='part/category_parametric.html'), name='category-parametric'),
url(r'^.*$', views.CategoryDetail.as_view(template_name='part/category_partlist.html'), name='category-detail'),
]
part_bom_urls = [