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

Added PartCategory

- Parent can be null (top-level category)
- Parent can be other PartCategory
This commit is contained in:
Oliver Walters
2017-03-25 23:07:43 +11:00
parent 2863ea1b70
commit bb4fc9820f
10 changed files with 47 additions and 63 deletions

5
InvenTree/part/admin.py Normal file
View File

@@ -0,0 +1,5 @@
from django.contrib import admin
from .models import PartCategory
admin.site.register(PartCategory)