Fixed #26816 -- Corrected an admin check to require inlines to subclass InlineModelAdmin.
This commit is contained in:
parent
3c97ba2a0d
commit
426bca002c
|
@ -561,12 +561,12 @@ class ModelAdminChecks(BaseModelAdminChecks):
|
||||||
""" Check one inline model admin. """
|
""" Check one inline model admin. """
|
||||||
inline_label = '.'.join([inline.__module__, inline.__name__])
|
inline_label = '.'.join([inline.__module__, inline.__name__])
|
||||||
|
|
||||||
from django.contrib.admin.options import BaseModelAdmin
|
from django.contrib.admin.options import InlineModelAdmin
|
||||||
|
|
||||||
if not issubclass(inline, BaseModelAdmin):
|
if not issubclass(inline, InlineModelAdmin):
|
||||||
return [
|
return [
|
||||||
checks.Error(
|
checks.Error(
|
||||||
"'%s' must inherit from 'BaseModelAdmin'." % inline_label,
|
"'%s' must inherit from 'InlineModelAdmin'." % inline_label,
|
||||||
obj=obj.__class__,
|
obj=obj.__class__,
|
||||||
id='admin.E104',
|
id='admin.E104',
|
||||||
)
|
)
|
||||||
|
|
|
@ -362,7 +362,7 @@ with the admin site:
|
||||||
* **admin.E102**: The value of ``save_on_top`` must be a boolean.
|
* **admin.E102**: The value of ``save_on_top`` must be a boolean.
|
||||||
* **admin.E103**: The value of ``inlines`` must be a list or tuple.
|
* **admin.E103**: The value of ``inlines`` must be a list or tuple.
|
||||||
* **admin.E104**: ``<InlineModelAdmin class>`` must inherit from
|
* **admin.E104**: ``<InlineModelAdmin class>`` must inherit from
|
||||||
``BaseModelAdmin``.
|
``InlineModelAdmin``.
|
||||||
* **admin.E105**: ``<InlineModelAdmin class>`` must have a ``model`` attribute.
|
* **admin.E105**: ``<InlineModelAdmin class>`` must have a ``model`` attribute.
|
||||||
* **admin.E106**: The value of ``<InlineModelAdmin class>.model`` must be a
|
* **admin.E106**: The value of ``<InlineModelAdmin class>.model`` must be a
|
||||||
``Model``.
|
``Model``.
|
||||||
|
|
|
@ -1339,7 +1339,7 @@ class InlinesCheckTests(CheckTestCase):
|
||||||
|
|
||||||
self.assertIsInvalidRegexp(
|
self.assertIsInvalidRegexp(
|
||||||
ValidationTestModelAdmin, ValidationTestModel,
|
ValidationTestModelAdmin, ValidationTestModel,
|
||||||
r"'.*\.ValidationTestInline' must inherit from 'BaseModelAdmin'\.",
|
r"'.*\.ValidationTestInline' must inherit from 'InlineModelAdmin'\.",
|
||||||
'admin.E104')
|
'admin.E104')
|
||||||
|
|
||||||
def test_missing_model_field(self):
|
def test_missing_model_field(self):
|
||||||
|
|
Loading…
Reference in New Issue