I've customized my user model by using AbstractBaseUser.
Everything works fine, but when I am in the Django Admin interface and us the form to change a user's password, in addition to the new password 1
and new password 2
fields, I also see their email in a text box:
How can I remove their email address from appearing in my admin change password form? Is there a special Django form that I can subclass?