mirror of
https://github.com/django/django.git
synced 2025-07-24 13:44:32 +00:00
Fixed #27313 -- Allowed overriding admin popup response template.
This commit is contained in:
parent
fb1349ce8c
commit
1e629928e9
6 changed files with 80 additions and 6 deletions
|
@ -1318,6 +1318,12 @@ templates used by the :class:`ModelAdmin` views:
|
|||
|
||||
Path to a custom template, used by :meth:`history_view`.
|
||||
|
||||
.. attribute:: ModelAdmin.popup_response_template
|
||||
|
||||
.. versionadded:: 1.11
|
||||
|
||||
Path to a custom template, used by :meth:`response_add`,
|
||||
:meth:`response_change`, and :meth:`response_delete`.
|
||||
|
||||
.. _model-admin-methods:
|
||||
|
||||
|
@ -2516,6 +2522,11 @@ app or per model. The following can:
|
|||
* ``change_list.html``
|
||||
* ``delete_confirmation.html``
|
||||
* ``object_history.html``
|
||||
* ``popup_response.html``
|
||||
|
||||
.. versionchanged:: 1.11
|
||||
|
||||
The ability to override the ``popup_response.html`` template was added.
|
||||
|
||||
For those templates that cannot be overridden in this way, you may still
|
||||
override them for your entire project. Just place the new version in your
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue