mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 11:36:44 +00:00
7 lines
134 B
Python
7 lines
134 B
Python
from django.contrib import admin
|
|
|
|
from .models import PartCategory, Part
|
|
|
|
admin.site.register(Part)
|
|
admin.site.register(PartCategory)
|