From 3b2fa4314b713228dbb2f5f440699c805c0b94b5 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Fri, 3 Jan 2025 11:48:45 -0800 Subject: [PATCH 1/3] add join notify link --- app/templates/components/header.html | 5 ++++- app/templates/views/dashboard/_activity.html | 19 +++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 app/templates/views/dashboard/_activity.html diff --git a/app/templates/components/header.html b/app/templates/components/header.html index a6abd1282..e9d3d107d 100644 --- a/app/templates/components/header.html +++ b/app/templates/components/header.html @@ -38,7 +38,10 @@ {% set navigation = [] %} {% if FEATURE_ABOUT_PAGE_ENABLED %} -{% set navigation = navigation + [{"href": url_for('main.about_notify'), "text": "About Notify", "active": request.path == '/about'}] %} +{% 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'} +] %} {% endif %} {% endif %} diff --git a/app/templates/views/dashboard/_activity.html b/app/templates/views/dashboard/_activity.html new file mode 100644 index 000000000..e1c459004 --- /dev/null +++ b/app/templates/views/dashboard/_activity.html @@ -0,0 +1,19 @@ +
+ sdsadadadadadsadsdsad + +
+
+ + + sdsadadadadadsadsdsad + +
+

Total messages

+ +
+
+
+
+
+
+
From 94c5eb5234151a8679b6cca728b7b747af530685 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Fri, 3 Jan 2025 13:05:47 -0800 Subject: [PATCH 2/3] added side nav --- app/main/views/sub_navigation_dictionaries.py | 4 ++++ app/templates/components/header.html | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app/main/views/sub_navigation_dictionaries.py b/app/main/views/sub_navigation_dictionaries.py index 16991297a..9bd008842 100644 --- a/app/main/views/sub_navigation_dictionaries.py +++ b/app/main/views/sub_navigation_dictionaries.py @@ -114,6 +114,10 @@ def about_notify_nav(): }, ], }, + { + "name": "Join Notify", + "link": "main.join_notify", + }, { "name": "Contact", "link": "main.contact", diff --git a/app/templates/components/header.html b/app/templates/components/header.html index e9d3d107d..847ac2d30 100644 --- a/app/templates/components/header.html +++ b/app/templates/components/header.html @@ -40,7 +40,8 @@ {% if FEATURE_ABOUT_PAGE_ENABLED %} {% 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.join_notify'), "text": "Join Notify", "active": request.path == '/join-notify'}, + {"href": url_for('main.contact'), "text": "Contact", "active": request.path == '/contact'} ] %} {% endif %} {% endif %} From a1c76bc579649359615745e56a252d430b0a0b59 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Fri, 3 Jan 2025 13:07:49 -0800 Subject: [PATCH 3/3] removed file --- app/templates/views/dashboard/_activity.html | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 app/templates/views/dashboard/_activity.html diff --git a/app/templates/views/dashboard/_activity.html b/app/templates/views/dashboard/_activity.html deleted file mode 100644 index e1c459004..000000000 --- a/app/templates/views/dashboard/_activity.html +++ /dev/null @@ -1,19 +0,0 @@ -
- sdsadadadadadsadsdsad - -
-
- - - sdsadadadadadsadsdsad - -
-

Total messages

- -
-
-
-
-
-
-