Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set user.is_staff to True by default in Django Admin? [closed]

I need to set the is_staff value to True when creating a user in Admin interface.

How can I do that?

Thanks

like image 333
user2066408 Avatar asked Feb 12 '13 22:02

user2066408


1 Answers

You can define a custom ModelAdmin and add your custom logic there:

class UserAdmin(admin.ModelAdmin):
    def save_model(self, request, obj, form, change):
        if request.user.is_superuser:
            obj.is_staff = True
            obj.save()

admin.site.register(User, UserAdmin)

You can read more about it here.

like image 81
asermax Avatar answered Oct 14 '22 10:10

asermax