Refs #15779 -- Fixed UserChangeForm regression introduced by 1791a7e75

Thanks Tim Graham for reporting the regression.
This commit is contained in:
Claude Paroz 2015-03-27 20:07:35 +01:00
parent 1f2abf784a
commit c2bfd76ec3
2 changed files with 18 additions and 3 deletions

View file

@ -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