diff --git a/awx/sso/views.py b/awx/sso/views.py index b6fd724df7..6001c3a502 100644 --- a/awx/sso/views.py +++ b/awx/sso/views.py @@ -22,7 +22,7 @@ class BaseRedirectView(RedirectView): def get_redirect_url(self, *args, **kwargs): last_path = self.request.COOKIES.get('lastPath', '') last_path = urllib.parse.quote(urllib.parse.unquote(last_path).strip('"')) - url = reverse('ui:index') + url = reverse('ui_next:index') if last_path: return '%s#%s' % (url, last_path) else: