mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-23 05:07:10 +00:00
6 lines
142 B
Python
6 lines
142 B
Python
from django.contrib import admin
|
|
from django.contrib.auth.models import Group, User
|
|
|
|
admin.site.unregister(Group)
|
|
admin.site.unregister(User)
|