diff options
Diffstat (limited to 'tbc/static/admin/templates/admin/popup_response.html')
-rw-r--r-- | tbc/static/admin/templates/admin/popup_response.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tbc/static/admin/templates/admin/popup_response.html b/tbc/static/admin/templates/admin/popup_response.html new file mode 100644 index 0000000..bbe8908 --- /dev/null +++ b/tbc/static/admin/templates/admin/popup_response.html @@ -0,0 +1,15 @@ +{% load i18n %}<!DOCTYPE html> +<html> + <head><title>{% trans 'Popup closing...' %}</title></head> + <body> + <script type="text/javascript"> + {% if action == 'change' %} + opener.dismissChangeRelatedObjectPopup(window, "{{ value|escapejs }}", "{{ obj|escapejs }}", "{{ new_value|escapejs }}"); + {% elif action == 'delete' %} + opener.dismissDeleteRelatedObjectPopup(window, "{{ value|escapejs }}"); + {% else %} + opener.dismissAddRelatedObjectPopup(window, "{{ value|escapejs }}", "{{ obj|escapejs }}"); + {% endif %} + </script> + </body> +</html> |