from django.contrib import admin from . models import Event, Category admin.site.register(Event) admin.site.register(Category)