mirror of https://github.com/django/django.git
Added warning about get_inline_instances() permission checking; refs #23754.
This commit is contained in:
parent
8e7b384d89
commit
e0d1f2684a
|
@ -1415,9 +1415,15 @@ templates used by the :class:`ModelAdmin` views:
|
||||||
filtering based on add, change, and delete permissions::
|
filtering based on add, change, and delete permissions::
|
||||||
|
|
||||||
class MyModelAdmin(admin.ModelAdmin):
|
class MyModelAdmin(admin.ModelAdmin):
|
||||||
|
inlines = (MyInline,)
|
||||||
|
|
||||||
def get_inline_instances(self, request, obj=None):
|
def get_inline_instances(self, request, obj=None):
|
||||||
return [inline(self.model, self.admin_site) for inline in self.inlines]
|
return [inline(self.model, self.admin_site) for inline in self.inlines]
|
||||||
|
|
||||||
|
If you override this method, make sure that the returned inlines are
|
||||||
|
instances of the classes defined in :attr:`inlines` or you might encounter
|
||||||
|
a "Bad Request" error when adding related objects.
|
||||||
|
|
||||||
.. method:: ModelAdmin.get_urls()
|
.. method:: ModelAdmin.get_urls()
|
||||||
|
|
||||||
The ``get_urls`` method on a ``ModelAdmin`` returns the URLs to be used for
|
The ``get_urls`` method on a ``ModelAdmin`` returns the URLs to be used for
|
||||||
|
|
Loading…
Reference in New Issue