Files
ITShowPlatform/comments/admin.py
T
2022-04-17 15:44:54 +08:00

6 lines
122 B
Python

from django.contrib import admin
from .models import Comments
# Register your models here.
admin.site.register(Comments)