Corrected to not erroneously mention email as being required.
Email field isn't required.
This commit is contained in:
parent
432623603c
commit
841a87785a
|
@ -290,7 +290,7 @@ class AbstractUser(AbstractBaseUser, PermissionsMixin):
|
||||||
An abstract base class implementing a fully featured User model with
|
An abstract base class implementing a fully featured User model with
|
||||||
admin-compliant permissions.
|
admin-compliant permissions.
|
||||||
|
|
||||||
Username, password and email are required. Other fields are optional.
|
Username and password are required. Other fields are optional.
|
||||||
"""
|
"""
|
||||||
username = models.CharField(
|
username = models.CharField(
|
||||||
_('username'),
|
_('username'),
|
||||||
|
|
Loading…
Reference in New Issue