mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-10 16:23:23 +00:00
12 lines
296 B
Python
12 lines
296 B
Python
from django.contrib import admin
|
|
from core.models import User, Page, RealGroup, SithFile
|
|
from django.contrib.auth.models import Group as AuthGroup
|
|
|
|
|
|
admin.site.register(User)
|
|
admin.site.unregister(AuthGroup)
|
|
admin.site.register(RealGroup)
|
|
admin.site.register(Page)
|
|
admin.site.register(SithFile)
|
|
|