11

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

How can I do that?

Thanks

Gringo Suave
  • 29,931
  • 6
  • 88
  • 75
user2066408
  • 397
  • 1
  • 5
  • 8

1 Answers1

14

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.

asermax
  • 3,053
  • 2
  • 23
  • 28