diff options
| author | Michael Scott <michael.scott250@gmail.com> | 2016-11-12 19:09:15 +0000 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-12-14 18:10:56 -0500 |
| commit | 1e629928e9257da5ec37a65784c0f68889d3edf4 (patch) | |
| tree | 4de99f56c508a22484ab98bedcf4c833dc582417 /tests/admin_views/admin.py | |
| parent | fb1349ce8cfd207ec5bbdb617dad75a73caee33b (diff) | |
Fixed #27313 -- Allowed overriding admin popup response template.
Diffstat (limited to 'tests/admin_views/admin.py')
| -rw-r--r-- | tests/admin_views/admin.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/admin_views/admin.py b/tests/admin_views/admin.py index cdb32a2825..bc4c7e647f 100644 --- a/tests/admin_views/admin.py +++ b/tests/admin_views/admin.py @@ -162,6 +162,7 @@ class CustomArticleAdmin(admin.ModelAdmin): object_history_template = 'custom_admin/object_history.html' delete_confirmation_template = 'custom_admin/delete_confirmation.html' delete_selected_confirmation_template = 'custom_admin/delete_selected_confirmation.html' + popup_response_template = 'custom_admin/popup_response.html' def changelist_view(self, request): return super(CustomArticleAdmin, self).changelist_view( |
