mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-10 16:23:23 +00:00
8 lines
155 B
Python
8 lines
155 B
Python
from django.contrib import admin
|
|
|
|
from forum.models import *
|
|
|
|
admin.site.register(Forum)
|
|
admin.site.register(ForumTopic)
|
|
admin.site.register(ForumMessage)
|