#30163: error_messages password1 'required' can not be overwritten
-----------------------------------------+------------------------
               Reporter:  Oskar Haller   |          Owner:  nobody
                   Type:  Uncategorized  |         Status:  new
              Component:  Uncategorized  |        Version:  2.1
               Severity:  Normal         |       Keywords:
           Triage Stage:  Unreviewed     |      Has patch:  0
    Needs documentation:  0              |    Needs tests:  0
Patch needs improvement:  0              |  Easy pickings:  0
                  UI/UX:  0              |
-----------------------------------------+------------------------
 {{{
 class UserRegisterForm(UserCreationForm):
     """
     Form class to register a new user
     """
     class Meta:
         #https://docs.djangoproject.com/en/2.1/topics/forms/modelforms
 /#modelforms-overriding-default-fields
         model = User
         fields = (...'password1',  'password2')
         error_messages = {
             'password1': {
                 'required': _('Please enter a password.')
             },
             'password2': {
                 'required': _('Please enter a password.')
             }
         }

 }}}

 Instead of 'Please enter a password' I get 'This field is required.'

 For all other fields the overwriting works fine

-- 
Ticket URL: <https://code.djangoproject.com/ticket/30163>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/047.318a627186ce5e1cf4725006e0114eea%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to