8 lines
No EOL
160 B
Python
8 lines
No EOL
160 B
Python
from django.contrib import admin
|
|
from django.contrib.auth.models import Group
|
|
|
|
from .models import User
|
|
|
|
|
|
admin.site.unregister(Group)
|
|
admin.site.register(User) |