1
0
mirror of https://github.com/django/django.git synced 2025-06-05 03:29:12 +00:00

[3.2.x] Refs #32372 -- Updated manager name in related objects reference docs.

Follow up to 725c549ae7a34d83447201da7190f8d71c7fc2fc.
Backport of 2b4b6c8af0aae8785bc1347cf1be2e8e70fd5ff3 from master
This commit is contained in:
Jack 2021-01-22 14:18:44 -05:00 committed by Mariusz Felisiak
parent 59c63c7f6b
commit c708837a69

View File

@ -22,7 +22,7 @@ Related objects reference
blog = models.ForeignKey(Blog, on_delete=models.CASCADE, null=True)
In the above example, the methods below will be available on
the manager ``reporter.article_set``.
the manager ``blog.entry_set``.
* Both sides of a :class:`~django.db.models.ManyToManyField` relation::