diff options
Diffstat (limited to 'docs/ref/models/meta.txt')
| -rw-r--r-- | docs/ref/models/meta.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/ref/models/meta.txt b/docs/ref/models/meta.txt index b63305d427..8adf719e16 100644 --- a/docs/ref/models/meta.txt +++ b/docs/ref/models/meta.txt @@ -33,8 +33,9 @@ Retrieving a single field instance of a model by name ``field_name`` can be the name of a field on the model, a field on an abstract or inherited model, or a field defined on another model that points to the model. In the latter case, the ``field_name`` - will be the ``related_name`` defined by the user or the name automatically - generated by Django itself. + will be (in order of preference) the :attr:`~.ForeignKey.related_query_name` + set by the user, the :attr:`~.ForeignKey.related_name` set by the user, or + the name automatically generated by Django. :attr:`Hidden fields <django.db.models.Field.hidden>` cannot be retrieved by name. |
