From e68afc7d0aa46d8754d78b0b11a6e8cfcef0cbca Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Mon, 13 Sep 2021 21:06:44 +0200 Subject: [PATCH] [WEI] Fix redirect link Signed-off-by: Yohann D'ANELLO --- apps/wei/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/wei/views.py b/apps/wei/views.py index 0f385d94..09fd9d56 100644 --- a/apps/wei/views.py +++ b/apps/wei/views.py @@ -1218,4 +1218,4 @@ class WEIAttributeBus1ANextView(LoginRequiredMixin, RedirectView): qs = qs.filter(information_json__contains='selected_bus_pk') # not perfect, but works... if qs.exists(): return reverse_lazy('wei:wei_bus_1A', args=(qs.first().pk, )) - return reverse_lazy('wei_1A_list', args=(wei.pk, )) + return reverse_lazy('wei:wei_1A_list', args=(wei.pk, ))