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