summaryrefslogtreecommitdiff
path: root/docs/topics/auth
diff options
context:
space:
mode:
authorDevilsAutumn <bhuvnesh875@gmail.com>2022-09-17 00:01:05 +0530
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-09-17 08:02:13 +0200
commit6b0bbaf453b7286bddf9c47a9dd75ac2acdfd617 (patch)
tree743af0e2be4f82298313b911e9b94e09d20ef317 /docs/topics/auth
parent9c42933711667034c9335f408e1a8a53031e9865 (diff)
downloaddjango-6b0bbaf453b7286bddf9c47a9dd75ac2acdfd617.tar.gz
Fixed #34019 -- Removed obsolete references to "model design considerations" note.
Diffstat (limited to 'docs/topics/auth')
-rw-r--r--docs/topics/auth/customizing.txt9
1 files changed, 4 insertions, 5 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt
index 919080a223..c77e6c599d 100644
--- a/docs/topics/auth/customizing.txt
+++ b/docs/topics/auth/customizing.txt
@@ -789,11 +789,10 @@ Extending Django's default ``User``
If you're entirely happy with Django's :class:`~django.contrib.auth.models.User`
model, but you want to add some additional profile information, you could
subclass :class:`django.contrib.auth.models.AbstractUser` and add your custom
-profile fields, although we'd recommend a separate model as described in the
-"Model design considerations" note of :ref:`specifying-custom-user-model`.
-``AbstractUser`` provides the full implementation of the default
-:class:`~django.contrib.auth.models.User` as an :ref:`abstract model
-<abstract-base-classes>`.
+profile fields, although we'd recommend a separate model as described in
+:ref:`specifying-custom-user-model`. ``AbstractUser`` provides the full
+implementation of the default :class:`~django.contrib.auth.models.User` as an
+:ref:`abstract model <abstract-base-classes>`.
.. _custom-users-and-the-built-in-auth-forms: