ModelAdmin Objects

You can try to import it like this:

from django.contrib import admin
from .models import Choice, Question

admin.site.register(Question)
admin.site.register(Choice)

Because models.py and admin.py in the same directory and you can access any file in the same directory with a dot.