From 3da0ecc5f9c9caff9245616743a82521967453bb Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Fri, 20 Dec 2024 13:57:28 -0800 Subject: [PATCH 1/6] add links --- app/templates/views/about/why-text-messaging.html | 2 +- app/templates/views/join-notify.html | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/templates/views/about/why-text-messaging.html b/app/templates/views/about/why-text-messaging.html index 2b1982225..c70629e58 100644 --- a/app/templates/views/about/why-text-messaging.html +++ b/app/templates/views/about/why-text-messaging.html @@ -40,7 +40,7 @@

Texting not only helps programs reach people using a nearly-universal communication method, it is a cost effective - way to do so. With Notify.gov you can get started for free, allowing you to try out + way to do so. With Notify.gov you can get started for free, allowing you to try out texting to complement your existing communications and outreach strategies.

What texting is best for

diff --git a/app/templates/views/join-notify.html b/app/templates/views/join-notify.html index 2c154bf72..ee91cc348 100644 --- a/app/templates/views/join-notify.html +++ b/app/templates/views/join-notify.html @@ -126,14 +126,14 @@ { "heading": "What if I need more than 250,000 messages?", "p_text": "Plans that include additional messages for a fee will be available soon. We want to design these plans - based on our partners’ needs, so please contact us if you hope to be able to + based on our partners’ needs, so please contact us if you hope to be able to send more messages. We’d like to talk with you.", "position": "b-a1" }, { "heading": "What phone numbers can my agency send to?", "p_text": "Right now, Notify.gov supports sending messages to North American numbers (+1). If you’d like to send to - international numbers, we want to hear from you.", + international numbers, we want to hear from you.", "position": "b-a2", }, { @@ -146,7 +146,7 @@ { "heading": "Can we use API integrations with Notify?", "p_text": "While public API integrations are not yet available, we are working on enabling these. If you're looking - for this feature we want to hear from you.", + for this feature we want to hear from you.", "position": "b-a4", }, { @@ -164,7 +164,7 @@ { "heading": "My OGC is asking about consent, where can I get more information for them?", "p_text": "Text message notifications are governed by the Telephone Consumer Protection Act. Different levels of - government have different consent requirements. Download and share our overview of the TCPA with your legal counsel as a starting point.", From fd92d856362a3ea3d2008784264d135ee6a430bd Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Fri, 3 Jan 2025 13:21:07 -0800 Subject: [PATCH 2/6] add link to card --- app/templates/views/signedout.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/views/signedout.html b/app/templates/views/signedout.html index 499e8294b..3f24b9ef3 100644 --- a/app/templates/views/signedout.html +++ b/app/templates/views/signedout.html @@ -136,7 +136,7 @@ import usaButton %} {% block meta %}

Limited data retention, encryption, and multi-factor - authentication protect user data and manage risk + authentication protect user data and manage risk with
our security efforts

From f176e86546b4fe8cd131c2952624a3bd5bdaef06 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Fri, 3 Jan 2025 15:05:55 -0800 Subject: [PATCH 3/6] add side nav --- app/main/views/index.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/main/views/index.py b/app/main/views/index.py index fe147fb72..fa18b0998 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -282,6 +282,8 @@ def guidance_index(): def contact(): return render_template( "views/contact.html", + navigation_links=about_notify_nav(), + ) @@ -313,6 +315,8 @@ def why_text_messaging(): def join_notify(): return render_template( "views/join-notify.html", + navigation_links=about_notify_nav(), + ) From e9ba1c7726c9ba953cd52e205ac2b344746ea765 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 7 Jan 2025 10:03:06 -0800 Subject: [PATCH 4/6] pin poetry to 1.8.5 for now --- .github/actions/setup-project/action.yml | 2 +- Makefile | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/setup-project/action.yml b/.github/actions/setup-project/action.yml index db1540fad..9315b7172 100644 --- a/.github/actions/setup-project/action.yml +++ b/.github/actions/setup-project/action.yml @@ -15,7 +15,7 @@ runs: python-version: "3.12.3" - name: Install poetry shell: bash - run: pip install poetry + run: pip install poetry==1.8.5 - name: Install application dependencies shell: bash run: make bootstrap diff --git a/Makefile b/Makefile index ed9baf394..9e0eeb46e 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,6 @@ NVMSH := $(shell [ -f "$(HOME)/.nvm/nvm.sh" ] && echo "$(HOME)/.nvm/nvm.sh" || e .PHONY: bootstrap bootstrap: generate-version-file ## Set up everything to run the app - poetry self update poetry self add poetry-dotenv-plugin poetry lock --no-update poetry install --sync --no-root From 322c23ab2f1fb8da3c0bb7d0104875d2556ad43e Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Tue, 7 Jan 2025 15:49:32 -0800 Subject: [PATCH 5/6] contact us --- app/templates/components/header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/components/header.html b/app/templates/components/header.html index 847ac2d30..339e07518 100644 --- a/app/templates/components/header.html +++ b/app/templates/components/header.html @@ -41,7 +41,7 @@ {% set navigation = navigation + [ {"href": url_for('main.about_notify'), "text": "About Notify", "active": request.path == '/about'}, {"href": url_for('main.join_notify'), "text": "Join Notify", "active": request.path == '/join-notify'}, - {"href": url_for('main.contact'), "text": "Contact", "active": request.path == '/contact'} + {"href": url_for('main.contact'), "text": "Contact us", "active": request.path == '/contact'} ] %} {% endif %} {% endif %} From 89ed31475d74b02ac3a738a424013d0a83995dd5 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Tue, 7 Jan 2025 15:54:03 -0800 Subject: [PATCH 6/6] contact us side nav --- app/main/views/sub_navigation_dictionaries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main/views/sub_navigation_dictionaries.py b/app/main/views/sub_navigation_dictionaries.py index 9bd008842..0e896b64e 100644 --- a/app/main/views/sub_navigation_dictionaries.py +++ b/app/main/views/sub_navigation_dictionaries.py @@ -119,7 +119,7 @@ def about_notify_nav(): "link": "main.join_notify", }, { - "name": "Contact", + "name": "Contact us", "link": "main.contact", }, ]