First models and views

This commit is contained in:
2022-03-09 18:13:09 +01:00
parent fea6cdcf96
commit 6171384e14
13 changed files with 303 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
from django.contrib import admin
# Register your models here.
from .models import Container
from .models import ContainerType
admin.site.register(ContainerType)
admin.site.register(Container)