11 lines
164 B
Python
11 lines
164 B
Python
|
from django.contrib import admin
|
||
|
from django.contrib.auth import get_user_model
|
||
|
|
||
|
# Register your models here.
|
||
|
|
||
|
|
||
|
User = get_user_model()
|
||
|
|
||
|
admin.site.register(User)
|
||
|
|