views:

29

answers:

1

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.

+5  A: 

Import User in your admin.py unregister it, create new ModelAdmin for it (or subclass the default one) and go wild.

It would look something like this I guess:

from django.contrib.auth.models import User

class UserAdmin(admin.ModelAdmin):
    actions = ['some_action']

    def some_action(self, request, queryset):
        #do something ...
    some_action.short_description = "blabla"

admin.site.unregister(User)
admin.site.register(User, UserAdmin)

Reference for actions.

rebus
+1. Clean. This is what I would do.
Manoj Govindan
Thanks! It completely works for me!
radious