30 lines
745 B
Python
30 lines
745 B
Python
from django.contrib import admin
|
|
from django.contrib.auth import get_user_model
|
|
from django.contrib.auth.admin import UserAdmin
|
|
|
|
from .forms import CustomUserCreationForm, CustomUserChangeForm
|
|
from .models import CustomUser
|
|
|
|
|
|
class CustomUserAdmin(UserAdmin):
|
|
add_form = CustomUserCreationForm
|
|
form = CustomUserChangeForm
|
|
model = CustomUser
|
|
list_display = [
|
|
"email",
|
|
"username",
|
|
]
|
|
|
|
# Explicitly define add_fieldsets to prevent unexpected fields
|
|
add_fieldsets = (
|
|
(
|
|
None,
|
|
{
|
|
"classes": ("wide",),
|
|
"fields": ("username", "email", "password1", "password2"),
|
|
},
|
|
),
|
|
)
|
|
|
|
|
|
admin.site.register(CustomUser, CustomUserAdmin)
|