I have a UserForm that is a modelform on the model User. I have a method called clean_username(). The purpose of this method is ensure that the username that the user picks while creating a User object is not taken. So this works great when a new user is created.
I also use the same form on my edit page where I allow the user to change the password. The username is set unchangeable by using the readonly property on the username. However, since the clean_username method is called there, i can't save the form, as my clean_username method is called which checks that username is already taken. How can i by pass this, or have the method clean_username be called contextually? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---