mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-16 19:23:27 +00:00
7 lines
163 B
Python
7 lines
163 B
Python
from django.contrib import admin
|
|
|
|
from stock.models import Stock, StockItem
|
|
|
|
# Register your models here.
|
|
admin.site.register(Stock)
|
|
admin.site.register(StockItem) |