Opened 15 years ago

Closed 15 years ago

#10051 closed (duplicate)

Admin site forms enforce arbitrary requirements on usernames that aren't required by the User model

Reported by: dstn@… Owned by: nobody
Component: contrib.auth Version: 1.0
Severity: Keywords:
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/forms.py : UserCreationForm and UserChangeForm both use RegexFields (DRY violation here, by the way) for the username. Shouldn't this checking be in the User model class instead? User objects created through other channels don't get these checks.

In my app I want usernames to be email addresses, and there was no problem with this until I started using the admin site to update User entries.

cheers,
dustin.

Change History (1)

comment:1 by James Bennett, 15 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #8342, #8878 and #7591.

In the future, please search for existing tickets before opening new ones.

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