8 lines
133 B
Python
8 lines
133 B
Python
|
from django.contrib import admin
|
||
|
from django.contrib.auth import get_user_model
|
||
|
|
||
|
|
||
|
User = get_user_model()
|
||
|
|
||
|
admin.site.register(User)
|