summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/ref/contrib/admin/index.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index 33e6c578de..baa8f99886 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -1252,7 +1252,12 @@ templates used by the :class:`ModelAdmin` views:
``obj`` being edited (or ``None`` on an add form) and is expected to return
a ``list`` or ``tuple`` of :class:`~django.contrib.admin.InlineModelAdmin`
objects, as described below in the :class:`~django.contrib.admin.InlineModelAdmin`
- section.
+ section. For example, the following would return inlines without the default
+ filtering based on add, change, and delete permissions::
+
+ class MyModelAdmin(admin.ModelAdmin):
+ def get_inline_instances(request, obj=None):
+ return [inline(self.model, self.admin_site) for inline in self.inlines]
.. method:: ModelAdmin.get_urls()