from django.contrib import admin from .models import Comments # Register your models here. class CommentsAdmin(admin.ModelAdmin): list_display = ('id', "post_time","content") admin.site.register(Comments,CommentsAdmin)