Class InlineModelAdmin
Options for inline editing of ``model`` instances.
Declaration
source linkDocumentation
Provide ``fk_name`` to specify the attribute name of the ``ForeignKey``
from ``model`` to its parent. This is required if ``model`` has more than
one ``ForeignKey`` to its parent.
Methods
▶ def __init__(self, parent_model, admin_site) override ▷ def get_extra(self, request, obj=None, **kwargs) Hook for customizing the number of extra inline forms.
▶ def get_formset(self, request, obj=None, **kwargs) Return a BaseInlineFormSet class for use in admin add/change views.
▷ def get_max_num(self, request, obj=None, **kwargs) Hook for customizing the max number of extra inline forms.
▷ def get_min_num(self, request, obj=None, **kwargs) Hook for customizing the min number of inline forms.
▶ def get_queryset(self, request) overrideinherited doc Return a QuerySet of all model instances that can be edited by the admin site. This is used by changelist_view.
▶ def has_add_permission(self, request, obj) overrideinherited doc Return True if the given request has permission to add an object. Can be overridden by the user in subclasses.
▶ def has_change_permission(self, request, obj=None) overrideinherited doc Return True if the given request has permission to change the given Django model instance, the default implementation doesn't examine the `obj` parameter.
This method overrides django.contrib.admin.options.BaseModelAdmin.has_change_permission.
Can be overridden by the user in subclasses. In such case it should
return True if the given request has permission to change the `obj`
model instance. If `obj` is None, this should return True if the given
request has permission to change *any* object of the given type.
▶ def has_delete_permission(self, request, obj=None) overrideinherited doc Return True if the given request has permission to change the given Django model instance, the default implementation doesn't examine the `obj` parameter.
This method overrides django.contrib.admin.options.BaseModelAdmin.has_delete_permission.
Can be overridden by the user in subclasses. In such case it should
return True if the given request has permission to delete the `obj`
model instance. If `obj` is None, this should return True if the given
request has permission to delete *any* object of the given type.
▶ def has_view_permission(self, request, obj=None) overrideinherited doc Return True if the given request has permission to view the given Django model instance. The default implementation doesn't examine the `obj` parameter.
This method overrides django.contrib.admin.options.BaseModelAdmin.has_view_permission.
If overridden by the user in subclasses, it should return True if the
given request has permission to view the `obj` model instance. If `obj`
is None, it should return True if the request has permission to view
any object of the given type.
▷ def media(self) @property