diff options
| author | Hrushikesh <hrushikeshrv@gmail.com> | 2023-06-16 19:06:24 +0530 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-06-21 07:48:09 +0200 |
| commit | 107865780aa44914e21d27fdf4ca269bc61c7f01 (patch) | |
| tree | bb8163452630f2cbd4322400aaa8cdab4a6d57f2 /docs/ref | |
| parent | ddb6506618ea52c6b20e97eefad03ed847a1e3de (diff) | |
Fixed #34345 -- Added system check for ManyToManyFields with intermediate tables in ModelAdmin.filter_horizontal/vertical.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/checks.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt index 50f7c1b166..de7b0dc382 100644 --- a/docs/ref/checks.txt +++ b/docs/ref/checks.txt @@ -637,9 +637,10 @@ with the admin site: * **admin.E011**: The value of ``fieldsets[n][1]`` must contain the key ``fields``. * **admin.E012**: There are duplicate field(s) in ``fieldsets[n][1]``. -* **admin.E013**: The value of ``fields[n]/fieldsets[n][m]`` cannot include the - ``ManyToManyField`` ``<field name>``, because that field manually specifies a - relationship model. +* **admin.E013**: The value of + ``fields[n]/filter_horizontal[n]/filter_vertical[n]/fieldsets[n][m]`` cannot + include the ``ManyToManyField`` ``<field name>``, because that field manually + specifies a relationship model. * **admin.E014**: The value of ``exclude`` must be a list or tuple. * **admin.E015**: The value of ``exclude`` contains duplicate field(s). * **admin.E016**: The value of ``form`` must inherit from ``BaseModelForm``. |
