mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
6 lines
137 B
Python
6 lines
137 B
Python
from django.contrib import admin
|
|
|
|
from .models import Warehouse, StockItem
|
|
|
|
admin.site.register(Warehouse)
|
|
admin.site.register(StockItem) |