diff options
| author | Ramiro Morales <cramm0@gmail.com> | 2014-03-11 12:28:35 -0200 |
|---|---|---|
| committer | Ramiro Morales <cramm0@gmail.com> | 2014-03-11 12:28:35 -0200 |
| commit | 6d3ebe10f4f8c4b91c9cbeccf9696ca79b6909f9 (patch) | |
| tree | 7257d1d3953d1929786550c559853d1d11946511 | |
| parent | 89e4226ed180692ca0ee5e5e7cc52f5f4c8326a3 (diff) | |
| parent | 1d42a86ec7e16336955735474f88e7632a34f3cb (diff) | |
Merge pull request #2418 from ramiro/21293-tweak
Tweak password admin change form view context. Refs #21293.
| -rw-r--r-- | django/contrib/auth/admin.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/contrib/auth/admin.py b/django/contrib/auth/admin.py index 9bfc070ab2..37d0ee487b 100644 --- a/django/contrib/auth/admin.py +++ b/django/contrib/auth/admin.py @@ -156,6 +156,7 @@ class UserAdmin(admin.ModelAdmin): 'save_as': False, 'show_save': True, } + context.update(admin.site.each_context()) return TemplateResponse(request, self.change_user_password_template or 'admin/auth/user/change_password.html', |
