From 47da3fd40f54bf263657e0164adde0abdf6da3ef Mon Sep 17 00:00:00 2001 From: Jonathan Bobel Date: Mon, 26 Jun 2023 11:25:47 -0400 Subject: [PATCH] Updated nav for Platform Admin users --- app/templates/admin_template.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/templates/admin_template.html b/app/templates/admin_template.html index 8e91178f2..20b42efe8 100644 --- a/app/templates/admin_template.html +++ b/app/templates/admin_template.html @@ -51,6 +51,16 @@ {% if current_user.is_authenticated %} {% if current_user.platform_admin %} {% set navigation = [ + { + "href": url_for('main.get_started'), + "text": "Using notify", + "active": header_navigation.is_selected('using_notify') + }, + { + "href": url_for('main.features'), + "text": "Features", + "active": header_navigation.is_selected('features') + }, { "href": url_for('main.user_profile'), "text": current_user.name,