from django.contrib import admin from .models import Level, Author admin.site.register(Level) admin.site.register(Author)