mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-25 18:53:45 +03:00
34 lines
959 B
Python
34 lines
959 B
Python
from django.contrib import admin
|
|
from django.contrib.auth import admin as auth_admin
|
|
from django.contrib.auth import get_user_model
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from image_markuper.users.forms import UserAdminChangeForm, UserAdminCreationForm
|
|
|
|
User = get_user_model()
|
|
|
|
|
|
@admin.register(User)
|
|
class UserAdmin(auth_admin.UserAdmin):
|
|
|
|
form = UserAdminChangeForm
|
|
add_form = UserAdminCreationForm
|
|
fieldsets = (
|
|
(None, {"fields": ("username", "password")}),
|
|
(
|
|
_("Permissions"),
|
|
{
|
|
"fields": (
|
|
"is_active",
|
|
"is_staff",
|
|
"is_superuser",
|
|
"groups",
|
|
"user_permissions",
|
|
),
|
|
},
|
|
),
|
|
(_("Important dates"), {"fields": ("last_login", "date_joined")}),
|
|
)
|
|
list_display = ["username", "is_superuser"]
|
|
search_fields = ["username"]
|