ungleich-learning-circle/pedro/django-tutorial/mysite/polls/admin.py

8 lines
124 B
Python
Raw Normal View History

from django.contrib import admin
# Register your models here.
from .models import Question
admin.site.register(Question)