Merge branch 'main' into 2125-send-message-a11y-audit-unique-ids

This commit is contained in:
Beverly Nguyen
2024-12-17 11:48:05 -08:00
23 changed files with 1146 additions and 1013 deletions

View File

@@ -55,7 +55,7 @@ def index():
return render_template(
"views/signedout.html",
sms_rate=CURRENT_SMS_RATE,
counts=status_api_client.get_count_of_live_services_and_organizations()
counts=status_api_client.get_count_of_live_services_and_organizations(),
)
@@ -309,6 +309,13 @@ def why_text_messaging():
)
@main.route("/join-notify")
def join_notify():
return render_template(
"views/join-notify.html",
)
@main.route("/using-notify/guidance/create-and-send-messages")
@user_is_logged_in
def create_and_send_messages():

View File

@@ -483,6 +483,7 @@ def send_one_off_step(service_id, template_id, step_index):
link_to_upload=(
request.endpoint == "main.send_one_off_step" and step_index == 0
),
errors=form.errors if form.errors else None
)