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.
Import
Userin your admin.py unregister it, create newModelAdminfor it (or subclass the default one) and go wild.It would look something like this I guess:
Reference for actions.