Update redirection after add score

This commit is contained in:
Gregory Trullemans 2024-02-19 10:20:58 +01:00
parent 43c91facd2
commit fbc78a2509
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ def score_create_or_update(request, score_id=None, gymnast_id=None):
return HttpResponseRedirect(
reverse(
"gymnast_details_tab",
args=(form.cleaned_data["gymnast"].id, "scores"),
args=(form.cleaned_data["gymnast"].id, "routine"),
)
)