1
0
mirror of https://github.com/django/django.git synced 2025-06-05 03:29:12 +00:00

[1.11.x] Clarified meaning of "Optional" in auth.models.User field docs.

Backport of 73c30b79c0c022464105b6031236571e2ff1d537 from master
This commit is contained in:
Jirka Schäfer 2017-04-02 03:24:42 +02:00 committed by Tim Graham
parent f0bf4bd79c
commit 233d0b238e

View File

@ -47,15 +47,18 @@ Fields
.. attribute:: first_name .. attribute:: first_name
Optional. 30 characters or fewer. Optional (:attr:`blank=True <django.db.models.Field.blank>`). 30
characters or fewer.
.. attribute:: last_name .. attribute:: last_name
Optional. 30 characters or fewer. Optional (:attr:`blank=True <django.db.models.Field.blank>`). 30
characters or fewer.
.. attribute:: email .. attribute:: email
Optional. Email address. Optional (:attr:`blank=True <django.db.models.Field.blank>`). Email
address.
.. attribute:: password .. attribute:: password