6 lines
128 B
Python
6 lines
128 B
Python
from django.contrib import admin
|
|
|
|
from .models import Thread, Comment
|
|
|
|
admin.site.register(Thread)
|
|
admin.site.register(Comment)
|