working polls app with function-based non-generic views

This commit is contained in:
2025-12-21 18:54:55 -05:00
parent 384b2e7303
commit 72d10ab9d2
17 changed files with 194 additions and 55 deletions

6
apps/polls/admin.py Normal file
View File

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