Fixed #29458 -- Doc'd how related_query_name affects Model._meta.get_field().
This commit is contained in:
parent
f4ef71c689
commit
2d6776ffe0
1
AUTHORS
1
AUTHORS
|
@ -382,6 +382,7 @@ answer newbie questions, and generally made Django that much better:
|
||||||
Jeff Hui <jeffkhui@gmail.com>
|
Jeff Hui <jeffkhui@gmail.com>
|
||||||
Jeffrey Gelens <jeffrey@gelens.org>
|
Jeffrey Gelens <jeffrey@gelens.org>
|
||||||
Jeff Triplett <jeff.triplett@gmail.com>
|
Jeff Triplett <jeff.triplett@gmail.com>
|
||||||
|
Jeffrey Yancey <jeffrey.yancey@gmail.com>
|
||||||
Jens Diemer <django@htfx.de>
|
Jens Diemer <django@htfx.de>
|
||||||
Jens Page
|
Jens Page
|
||||||
Jensen Cochran <jensen.cochran@gmail.com>
|
Jensen Cochran <jensen.cochran@gmail.com>
|
||||||
|
|
|
@ -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
|
``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
|
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``
|
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
|
will be (in order of preference) the :attr:`~.ForeignKey.related_query_name`
|
||||||
generated by Django itself.
|
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
|
:attr:`Hidden fields <django.db.models.Field.hidden>` cannot be retrieved
|
||||||
by name.
|
by name.
|
||||||
|
|
Loading…
Reference in New Issue