Unified some doc links to OneToOneField and ManyToManyField.

This commit is contained in:
Tim Graham 2016-02-01 11:02:26 -05:00
parent a6ef025dfb
commit 8ce8beb3f2
6 changed files with 14 additions and 20 deletions

View file

@ -300,8 +300,8 @@ change to what is stored in the database, you can create a :ref:`proxy model
allows for any of the features offered by proxy models including default
ordering, custom managers, or custom model methods.
If you wish to store information related to ``User``, you can use a :ref:`one-to-one
relationship <ref-onetoone>` to a model containing the fields for
If you wish to store information related to ``User``, you can use a
:class:`~django.db.models.OneToOneField` to a model containing the fields for
additional information. This one-to-one model is often called a profile model,
as it might store non-auth related information about a site user. For example
you might create an Employee model::