diff options
| author | Claude Paroz <claude@2xlibre.net> | 2015-03-27 20:07:35 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2015-03-28 09:24:01 +0100 |
| commit | c2bfd76ec3678cc28fb6fce6be0ae217b46bcd9e (patch) | |
| tree | a8617618d25d164cb8b37a29b28b72ad67ba59da /django | |
| parent | 1f2abf784a9fe550959de242d91963b2ad6f7e9c (diff) | |
Refs #15779 -- Fixed UserChangeForm regression introduced by 1791a7e75
Thanks Tim Graham for reporting the regression.
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/auth/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/forms.py b/django/contrib/auth/forms.py index 928c4c7988..84fc757e26 100644 --- a/django/contrib/auth/forms.py +++ b/django/contrib/auth/forms.py @@ -98,7 +98,7 @@ class UserChangeForm(forms.ModelForm): password = ReadOnlyPasswordHashField(label=_("Password"), help_text=_("Raw passwords are not stored, so there is no way to see " "this user's password, but you can change the password " - "using <a href=\"password/\">this form</a>.")) + "using <a href=\"../password/\">this form</a>.")) class Meta: model = User |
