summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/checks.txt17
1 files changed, 9 insertions, 8 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index 1066417f2e..6b66b18112 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -239,14 +239,15 @@ Related fields
either not installed, or is abstract.
* **fields.E301**: Field defines a relation with the model
``<app_label>.<model>`` which has been swapped out.
-* **fields.E302**: Accessor for field ``<model>.<field name>`` clashes with
- field ``<model>.<field name>``.
-* **fields.E303**: Reverse query name for field ``<model>.<field name>``
- clashes with field ``<model>.<field name>``.
-* **fields.E304**: Field name ``<model>.<field name>`` clashes with accessor
- for ``<model>.<field name>``.
-* **fields.E305**: Field name ``<model>.<field name>`` clashes with reverse
- query name for ``<model>.<field name>``.
+* **fields.E302**: Accessor for field ``<app_label>.<model>.<field name>``
+ clashes with field ``<app_label>.<model>.<field name>``.
+* **fields.E303**: Reverse query name for field
+ ``<app_label>.<model>.<field name>`` clashes with field
+ ``<app_label>.<model>.<field name>``.
+* **fields.E304**: Field name ``<app_label>.<model>.<field name>`` clashes with
+ accessor for ``<app_label>.<model>.<field name>``.
+* **fields.E305**: Field name ``<app_label>.<model>.<field name>`` clashes with
+ reverse query name for ``<app_label>.<model>.<field name>``.
* **fields.E306**: Related name must be a valid Python identifier or end with
a ``'+'``.
* **fields.E307**: The field ``<app label>.<model>.<field name>`` was declared