admin.py 91 B

1234
  1. from django.contrib import admin
  2. from .models import Comment
  3. admin.site.register(Comment)