comments/admin.py
2020-04-28 19:01:19 -04:00

6 lines
128 B
Python

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