Opened 3 years ago

Last modified 3 years ago

#33250 closed Cleanup/optimization

EmailField's label in PasswordResetForm does not match the verbose_name of AbstractUser's EmailField — at Initial Version

Reported by: Zoltán Szatmáry Owned by: nobody
Component: contrib.auth Version: 3.2
Severity: Normal Keywords: EmailField
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

django/contrib/auth/models.py:342

email = models.EmailField(_('email address'), blank=True)

django/contrib/auth/forms.py:242-246

email = forms.EmailField(

label=_("Email"),
max_length=254,
widget=forms.EmailInput(attrs={'autocomplete': 'email'})

)

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top