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