box-o-sand/djoy/polls/admin.py

6 lines
94 B
Python

from django.contrib import admin
from .models import Question
admin.site.register(Question)