initial movies app

This commit is contained in:
2026-02-28 13:04:19 -05:00
parent b1c9b88de1
commit fc715c3ced
15 changed files with 197 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
from django.contrib import admin
from .models import Question
from .models import Choice, Question
# Register your models here.
admin.site.register(Question)
admin.site.register(Choice)