mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Merge pull request #511 from ryankask/username-password-admin
Allowed custom User models to use the UserAdmin's change password view. Fix #19056 (again).
This commit is contained in:
commit
9e11253497
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ class UserAdmin(admin.ModelAdmin):
|
|||
adminForm = admin.helpers.AdminForm(form, fieldsets, {})
|
||||
|
||||
context = {
|
||||
'title': _('Change password: %s') % escape(user.username),
|
||||
'title': _('Change password: %s') % escape(user.get_username()),
|
||||
'adminForm': adminForm,
|
||||
'form_url': form_url,
|
||||
'form': form,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue