I'm trying to customize the form field errors for a changepasswordview in Django, however, to do that I believe I need to know the attribute names of the field errors so that I can do something like this:
class UserUpdatePassword(PasswordChangeForm):
class Meta:
model = User
fields = ('password')
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields['old_password'].label = "Password antiguo"
print(self.fields['new_password1'].error_messages)
self.fields['new_password1'].label = "Nuevo Password"
self.fields['new_password1'].help_text = "Mínimo 8 caracteres, números y letras"
self.fields['new_password2'].label = "Confirmar nuevo Password"
self.fields['new_password1'].error_messages = {'password_mismatch': "Los Passwords ingresados no son iguales",}
I know there are errors for password and password confirmation mismatch, when the password is not long enough, only letters or numbers, etc. Where can I find the attribute names? (e.g. 'password_mismatch')
Set the following class variable in your UserUpdatePassword form:
and remove