[Answer]-Django – Change Form not working

1👍

Well, you should be passing the existing user object as the instance argument when you instantiate the form.

But I don’t understand the point of all this mucking about with passwords. If you don’t want the password field to be on the form, just add it to the exclude list in the form’s Meta class.

Leave a comment