from django.contrib import admin from management.models import Comment, Like admin.site.register(Comment) admin.site.register(Like)