From fbc78a25091f8956aa87cd02fe0ddf3e3ec54836 Mon Sep 17 00:00:00 2001 From: Gregory Trullemans Date: Mon, 19 Feb 2024 10:20:58 +0100 Subject: [PATCH] Update redirection after add score --- jarvis/followup/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jarvis/followup/views.py b/jarvis/followup/views.py index 972a945..c7fee88 100644 --- a/jarvis/followup/views.py +++ b/jarvis/followup/views.py @@ -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"), ) )