#30163: error_messages 'password1' 'required' can not be overidden
-------------------------------+--------------------------------------
     Reporter:  Oskar Haller   |                    Owner:  nobody
         Type:  Bug            |                   Status:  new
    Component:  Uncategorized  |                  Version:  2.1
     Severity:  Normal         |               Resolution:
     Keywords:                 |             Triage Stage:  Unreviewed
    Has patch:  0              |      Needs documentation:  0
  Needs tests:  0              |  Patch needs improvement:  0
Easy pickings:  0              |                    UI/UX:  0
-------------------------------+--------------------------------------
Description changed by Oskar Haller:

Old description:

> {{{
> 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

New description:

 {{{
 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 overrriding works fine

--

-- 
Ticket URL: <https://code.djangoproject.com/ticket/30163#comment:2>
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/062.dffcf70e0886dea0edec2759b6644dae%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to