register polls with admin site

This commit is contained in:
ergz 2022-07-23 16:37:51 -07:00
parent 2507c1f699
commit 2b191e1421
2 changed files with 3 additions and 0 deletions

Binary file not shown.

View File

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