mirror of
https://github.com/skoobasteeve/django-movies.git
synced 2026-03-20 03:28:59 +00:00
8 lines
159 B
Python
8 lines
159 B
Python
from django.contrib import admin
|
|
|
|
from .models import Choice, Question
|
|
|
|
# Register your models here.
|
|
admin.site.register(Question)
|
|
admin.site.register(Choice)
|