diff options
| author | Jirka Schäfer <jirka@tschitschereengreen.com> | 2017-04-02 03:24:42 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-04-01 21:25:57 -0400 |
| commit | 233d0b238ee789f79ea2aa8de7913416357774e4 (patch) | |
| tree | ad1fbfa0326b06194fd35e9579dda52b9182aa9e /docs | |
| parent | f0bf4bd79cf40131ef591d6e8f01ce48c9454da5 (diff) | |
[1.11.x] Clarified meaning of "Optional" in auth.models.User field docs.
Backport of 73c30b79c0c022464105b6031236571e2ff1d537 from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/auth.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/ref/contrib/auth.txt b/docs/ref/contrib/auth.txt index 402496a2db..b50bc966e5 100644 --- a/docs/ref/contrib/auth.txt +++ b/docs/ref/contrib/auth.txt @@ -47,15 +47,18 @@ Fields .. attribute:: first_name - Optional. 30 characters or fewer. + Optional (:attr:`blank=True <django.db.models.Field.blank>`). 30 + characters or fewer. .. attribute:: last_name - Optional. 30 characters or fewer. + Optional (:attr:`blank=True <django.db.models.Field.blank>`). 30 + characters or fewer. .. attribute:: email - Optional. Email address. + Optional (:attr:`blank=True <django.db.models.Field.blank>`). Email + address. .. attribute:: password |
