addition of Stock app, model, templates, urls

This commit is contained in:
guillaume-renaud
2016-10-31 08:19:46 +01:00
parent fdfd7e7388
commit 33c7e7db9f
6 changed files with 52 additions and 4 deletions

View File

@ -1,3 +1,7 @@
from django.contrib import admin
from stock.models import Stock, StockItem
# Register your models here.
admin.site.register(Stock)
admin.site.register(StockItem)