diff options
| author | Ville Skyttä <ville.skytta@iki.fi> | 2015-10-19 17:40:52 +0300 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-10-19 19:36:00 -0400 |
| commit | 094a60847a3e480fe694ce6c9f33832168987e90 (patch) | |
| tree | 9b832e49ab523dd5846c4f4fe607fee3b783fe46 | |
| parent | 3aeb84df250c2f739df1f551739434fb5839c53c (diff) | |
[1.9.x] Fixed #25566 -- Added title to admin's closing popup response page
Backport of aff4b75c34d62ec932414b5099016007fff17317 from master
| -rw-r--r-- | django/contrib/admin/templates/admin/popup_response.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/contrib/admin/templates/admin/popup_response.html b/django/contrib/admin/templates/admin/popup_response.html index 626ed98eda..bbe8908617 100644 --- a/django/contrib/admin/templates/admin/popup_response.html +++ b/django/contrib/admin/templates/admin/popup_response.html @@ -1,6 +1,6 @@ -<!DOCTYPE html> +{% load i18n %}<!DOCTYPE html> <html> - <head><title></title></head> + <head><title>{% trans 'Popup closing...' %}</title></head> <body> <script type="text/javascript"> {% if action == 'change' %} |
