简体   繁体   中英

how to disable password after inheriting AbstractUser to make a custom user

I followed what django docs said about inheriting AbstractUser to make a custom user for easy future changes

https://docs.djangoproject.com/en/3.0/topics/auth/customizing/#using-a-custom-user-model-when-starting-a-project

Anyway, I have it now on the admin menu as a different page, it now looks like this在此处输入图片说明

I basically want to disable that input (and others as well). How do I do that?

I think you are searching for the readonly_fields and exclude attributes of ModelAdmin,

class MyModelAdmin(admin.ModelAdmin):
    readonly_fields = ('foo', 'bar')
    exclude = ('foo_bar',)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM