from django.contrib import admin from .models import Instructor, Course admin.site.register(Instructor) admin.site.register(Course)