1
0
Fork 0
This commit is contained in:
Hugh Rundle 2023-09-25 15:29:01 +10:00
parent c95f160216
commit 01a56540d0
No known key found for this signature in database
GPG key ID: A7E35779918253F9
3 changed files with 4 additions and 14 deletions

View file

@ -41,9 +41,9 @@ class MoveUser(View):
return redirect("user-feed", username=request.user.username)
except (PermissionDenied):
except PermissionDenied:
form.errors["target"] = [
"You must set this server's user as an alias on the user you wish to move to before moving"
"Set this user as an alias on the user you wish to move to before moving"
]
data = {"form": form, "user": request.user}
return TemplateResponse(request, "preferences/move_user.html", data)