summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-09-11 14:07:12 -0400
committerTim Graham <timograham@gmail.com>2015-09-11 14:07:12 -0400
commite7e8d30cae9457339eb49ae8584e82ff0a038e99 (patch)
tree1f0e74bb7371ced7b349bf1116018a2670ee016f /docs
parent47016d4322574860f90431e1c87d19f7a1f778c6 (diff)
Refs #25381 -- Clarified that AppConfig model methods search only the current app.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/applications.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/ref/applications.txt b/docs/ref/applications.txt
index eb3cc6fd85..d634e7351b 100644
--- a/docs/ref/applications.txt
+++ b/docs/ref/applications.txt
@@ -204,13 +204,14 @@ Methods
.. method:: AppConfig.get_models()
- Returns an iterable of :class:`~django.db.models.Model` classes.
+ Returns an iterable of :class:`~django.db.models.Model` classes for this
+ application.
.. method:: AppConfig.get_model(model_name)
Returns the :class:`~django.db.models.Model` with the given
- ``model_name``. Raises :exc:`LookupError` if no such model exists.
- ``model_name`` is case-insensitive.
+ ``model_name``. Raises :exc:`LookupError` if no such model exists in this
+ application. ``model_name`` is case-insensitive.
.. method:: AppConfig.ready()