diff --git a/app/main/views/index.py b/app/main/views/index.py index 07be634fc..d3b495d6c 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -186,7 +186,7 @@ def trial_mode_new(): @user_is_logged_in def guidance(): return render_template( - "views/guidance/guidance.html", + "views/guidance/index.html", navigation_links=guidance_nav(), ) @@ -195,7 +195,7 @@ def guidance(): @user_is_logged_in def clear_goals(): return render_template( - "views/guidance/clear-goals.html", + "views/guidance/index.html", navigation_links=guidance_nav(), ) @@ -204,7 +204,7 @@ def clear_goals(): @user_is_logged_in def rules_and_regulations(): return render_template( - "views/guidance/rules-and-regulations.html", + "views/guidance/index.html", navigation_links=guidance_nav(), ) @@ -213,7 +213,7 @@ def rules_and_regulations(): @user_is_logged_in def establish_trust(): return render_template( - "views/guidance/establish-trust.html", + "views/guidance/index.html", navigation_links=guidance_nav(), ) diff --git a/tests/app/test_navigation.py b/tests/app/test_navigation.py index 749c41fa3..85c0cf39a 100644 --- a/tests/app/test_navigation.py +++ b/tests/app/test_navigation.py @@ -32,7 +32,6 @@ EXCLUDED_ENDPOINTS = tuple( "api_keys", "archive_service", "archive_user", - "as_people_receive_text", "begin_tour", "billing_details", "callbacks", @@ -106,7 +105,6 @@ EXCLUDED_ENDPOINTS = tuple( "get_notifications_as_json", "get_started", "get_started_old", - "get_the_word_out", "go_to_dashboard_after_tour", "guest_list", "guidance",