added models

This commit is contained in:
DerTyp187
2021-11-10 09:53:46 +01:00
parent 4a7b65b721
commit 56d3037856
7 changed files with 111 additions and 10 deletions

View File

@@ -1,3 +1,5 @@
from django.contrib import admin
from .models import Category, Topic
# Register your models here.
admin.site.register(Category)
admin.site.register(Topic)