diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt
index 516ae06..2bf4b9b 100644
a
|
b
|
different User model.
|
453 | 453 | :setting:`AUTH_USER_MODEL` setting in code that is executed at import |
454 | 454 | time. ``get_user_model()`` only works once Django has imported all models. |
455 | 455 | |
| 456 | .. _specifying-custom-user-model: |
| 457 | |
456 | 458 | Specifying a custom User model |
457 | 459 | ------------------------------ |
458 | 460 | |
… |
… |
Extending Django's default User
|
706 | 708 | ------------------------------- |
707 | 709 | |
708 | 710 | If you're entirely happy with Django's :class:`~django.contrib.auth.models.User` |
709 | | model and you just want to add some additional profile information, you can |
| 711 | model and you just want to add some additional profile information, you could |
710 | 712 | simply subclass ``django.contrib.auth.models.AbstractUser`` and add your |
711 | | custom profile fields. This class provides the full implementation of the |
712 | | default :class:`~django.contrib.auth.models.User` as an :ref:`abstract model |
| 713 | custom profile fields, although we'd recommend a separate model as described in |
| 714 | the "Model design considerations" note of :ref:`specifying-custom-user-model`. |
| 715 | ``AbstractUser`` provides the full implementation of the default |
| 716 | :class:`~django.contrib.auth.models.User` as an :ref:`abstract model |
713 | 717 | <abstract-base-classes>`. |
714 | 718 | |
715 | 719 | .. _custom-users-and-the-built-in-auth-forms: |