From c813fb327cb1b09542be89c5ceed367826236bc2 Mon Sep 17 00:00:00 2001 From: Bakdolot <80908236+Bakdolot@users.noreply.github.com> Date: Mon, 24 Apr 2023 17:14:35 +0600 Subject: Fixed #34481 -- Added system check for reverse related fields in ModelAdmin.list_display. --- tests/modeladmin/test_checks.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/modeladmin/test_checks.py b/tests/modeladmin/test_checks.py index e4ad0636a6..85f2eda69e 100644 --- a/tests/modeladmin/test_checks.py +++ b/tests/modeladmin/test_checks.py @@ -537,7 +537,20 @@ class ListDisplayTests(CheckTestCase): self.assertIsInvalid( TestModelAdmin, ValidationTestModel, - "The value of 'list_display[0]' must not be a ManyToManyField.", + "The value of 'list_display[0]' must not be a many-to-many field or a " + "reverse foreign key.", + "admin.E109", + ) + + def test_invalid_reverse_related_field(self): + class TestModelAdmin(ModelAdmin): + list_display = ["song_set"] + + self.assertIsInvalid( + TestModelAdmin, + Band, + "The value of 'list_display[0]' must not be a many-to-many field or a " + "reverse foreign key.", "admin.E109", ) -- cgit v1.3