Documented InlineModelAdmin.has_(add/change/delete)_permission().

This commit is contained in:
Jon Dufresne 2018-04-02 14:14:16 -07:00 committed by Tim Graham
parent 6148dda72f
commit b31a9149e1
1 changed files with 16 additions and 4 deletions

View File

@ -2231,12 +2231,9 @@ adds some of its own (the shared features are actually defined in the
- :meth:`~ModelAdmin.formfield_for_choice_field`
- :meth:`~ModelAdmin.formfield_for_foreignkey`
- :meth:`~ModelAdmin.formfield_for_manytomany`
- :meth:`~ModelAdmin.has_add_permission`
- :meth:`~ModelAdmin.has_change_permission`
- :meth:`~ModelAdmin.has_delete_permission`
- :meth:`~ModelAdmin.has_module_permission`
The ``InlineModelAdmin`` class adds:
The ``InlineModelAdmin`` class adds or customizes:
.. attribute:: InlineModelAdmin.model
@ -2398,6 +2395,21 @@ The ``InlineModelAdmin`` class adds:
inline forms. For example, this may be based on the model instance
(passed as the keyword argument ``obj``).
.. method:: InlineModelAdmin.has_add_permission(request)
Should return ``True`` if adding an inline object is permitted, ``False``
otherwise.
.. method:: InlineModelAdmin.has_change_permission(request, obj=None)
Should return ``True`` if editing an inline object is permitted, ``False``
otherwise. ``obj`` is the parent object being edited.
.. method:: InlineModelAdmin.has_delete_permission(request, obj=None)
Should return ``True`` if deleting an inline object is permitted, ``False``
otherwise. ``obj`` is the parent object being edited.
Working with a model with two or more foreign keys to the same parent model
---------------------------------------------------------------------------