2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-09 07:00:56 +00:00

Added stock page

This commit is contained in:
Oliver Walters
2017-03-27 21:04:15 +11:00
parent cc7593b44f
commit e98c20048b
9 changed files with 80 additions and 0 deletions

6
InvenTree/stock/admin.py Normal file
View File

@ -0,0 +1,6 @@
from django.contrib import admin
from .models import Warehouse, StockItem
admin.site.register(Warehouse)
admin.site.register(StockItem)