summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2013-06-27 15:12:35 +0100
committerAndrew Godwin <andrew@aeracode.org>2013-06-27 15:44:22 +0100
commit12cb0df10f12e715bcaafbee4290c92d4ed6f111 (patch)
treed268d3c25c459bdc53ac15e5d62dc7c83d5e6e83
parentb21e96d00d12f8467d61b15a943994b303504e0e (diff)
Docs for related_query_name
-rw-r--r--docs/ref/models/fields.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 8146dfd341..f5c1058b17 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -1083,6 +1083,22 @@ define the details of how the relation works.
user = models.ForeignKey(User, related_name='+')
+.. attribute:: ForeignKey.related_query_name
+
+ .. versionadded:: 1.6
+
+ The name to use for the reverse filter name from the target model.
+ Defaults to the value of :attr:`related_name` if it is set, otherwise it
+ defaults to the name of the model::
+
+ # Declare the ForeignKey with related_query_name
+ class Tag(models.Model):
+ article = models.ForeignKey(Article, related_name="tags", related_query_name="tag")
+ name = models.CharField(max_length=255)
+
+ # That's now the name of the reverse filter
+ article_instance.filter(tag__name="important")
+
.. attribute:: ForeignKey.to_field
The field on the related object that the relation is to. By default, Django
@@ -1207,6 +1223,12 @@ that control how the relationship functions.
users = models.ManyToManyField(User, related_name='u+')
referents = models.ManyToManyField(User, related_name='ref+')
+.. attribute:: ForeignKey.related_query_name
+
+ .. versionadded:: 1.6
+
+ Same as :attr:`ForeignKey.related_query_name`.
+
.. attribute:: ManyToManyField.limit_choices_to
Same as :attr:`ForeignKey.limit_choices_to`.