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