From d21e85278ed17e345d82d549e8c8df038e725c94 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Wed, 18 Sep 2024 22:45:49 -0700 Subject: [PATCH] fixed flake8 --- app/main/views/index.py | 9 +++++++++ app/templates/views/guidance/index.html | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/app/main/views/index.py b/app/main/views/index.py index 8e8184bfc..5943ab182 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -177,6 +177,7 @@ def trial_mode_new(): navigation_links=using_notify_nav(), ) + @main.route("/guidance") @user_is_logged_in def guidance(): @@ -185,6 +186,7 @@ def guidance(): navigation_links=guidance_nav(), ) + @main.route("/guidance/clear-goals") @user_is_logged_in def clear_goals(): @@ -194,6 +196,7 @@ def clear_goals(): title="Clear Goals" ) + @main.route("/guidance/rules-and-regulations") @user_is_logged_in def rules_and_regulations(): @@ -203,6 +206,7 @@ def rules_and_regulations(): title="Rules and Regulations" ) + @main.route("/guidance/establish-trust") @user_is_logged_in def establish_trust(): @@ -212,6 +216,7 @@ def establish_trust(): title="Establish Trust" ) + @main.route("/guidance/write-for-action") @user_is_logged_in def write_for_action(): @@ -221,6 +226,7 @@ def write_for_action(): title="Write For Action" ) + @main.route("/guidance/multiple-languages") @user_is_logged_in def multiple_languages(): @@ -230,6 +236,7 @@ def multiple_languages(): title="Multiple Languages" ) + @main.route("/guidance/get-the-word-out") @user_is_logged_in def get_the_word_out(): @@ -239,6 +246,7 @@ def get_the_word_out(): title="Get the Word Out" ) + @main.route("/guidance/as-people-receive-text") @user_is_logged_in def as_people_receive_text(): @@ -248,6 +256,7 @@ def as_people_receive_text(): title="As People Receive Text" ) + @main.route("/using-notify/guidance") @user_is_logged_in def guidance_index(): diff --git a/app/templates/views/guidance/index.html b/app/templates/views/guidance/index.html index a22df2f5e..a9878b05d 100644 --- a/app/templates/views/guidance/index.html +++ b/app/templates/views/guidance/index.html @@ -8,7 +8,7 @@ {% endblock %} {% block content_column_content %} -{% block GuidanceNavBreadcrumb %}{% include "components/guidance_nav_breadcrumb.html" %}{% endblock %} +{% block guidanceNavBreadcrumb %}{% include "components/guidance_nav_breadcrumb.html" %}{% endblock %}

Guidance