Is there any possibility to create custom action in admin page for django UserModel? I want automatize adding user to group (like adding him to staff, set some extra values, etc.), and of course create actions that take these changes back.
Thanks for your help.
from django.contrib.auth.admin import UserAdmin
and then subclassUserAdmin
instead ofModelAdmin
? – Wingate