Opened 3 years ago
Closed 3 years ago
#33250 closed Cleanup/optimization (wontfix)
EmailField's label in PasswordResetForm doesn't match the verbose_name of AbstractUser's EmailField
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 (last modified by )
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 (1)
comment:1 by , 3 years ago
Description: | modified (diff) |
---|---|
Resolution: | → wontfix |
Status: | assigned → closed |
Summary: | EmailField's label in PasswordResetForm does not match the verbose_name of AbstractUser's EmailField → EmailField's label in PasswordResetForm doesn't match the verbose_name of AbstractUser's EmailField |
Type: | Bug → Cleanup/optimization |
Note:
See TracTickets
for help on using tickets.
Thanks for this report, however IMO there is no need for them to be identical. The
Email
is completely valid and acceptable in thePasswordResetForm
, it's not worth changing and creating extra work for translators.