From 50ce6d9066ec711dc4ae8790e1c17f475ae84237 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Fri, 21 Sep 2018 08:36:57 -0400 Subject: [PATCH 1/2] update copy remove dismiss link --- templates/workspaces/reports/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/workspaces/reports/index.html b/templates/workspaces/reports/index.html index 563a7838..72a5c75b 100644 --- a/templates/workspaces/reports/index.html +++ b/templates/workspaces/reports/index.html @@ -5,11 +5,11 @@ {% block workspace_content %} - {{ Alert("Funding Information & Reports for Workspace " + workspace.name, - message="

On this screen you'll find detailed reporting information on this workspace. This message needs to be written better and be dismissable.

", + {{ Alert("Budget Report for Workspace " + workspace.name, + message="

Track your monthly and cumulative expenditures for your workspace, projects, and environments below.

\ +

Please note that the projected spend is based on the average expense over the last three completed months and therefore does not account for future changes that might be made in scale or configuration of your cloud services.

", actions=[ - {"label": "Learn More", "href": "/", "icon": "info"}, - {"label": "Dismiss", "href": "/"} + {"label": "Learn More", "href": "/", "icon": "info"} ] ) }}
From 5f012d2949227dc9478a537f530d9f67dbfbb4e1 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Fri, 21 Sep 2018 09:53:07 -0400 Subject: [PATCH 2/2] Rename nav Budget Report --- templates/navigation/workspace_navigation.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/navigation/workspace_navigation.html b/templates/navigation/workspace_navigation.html index fd767205..83c515c9 100644 --- a/templates/navigation/workspace_navigation.html +++ b/templates/navigation/workspace_navigation.html @@ -31,7 +31,7 @@ ) }} {{ SidenavItem( - "Funding & Reports", + "Budget Report", href=url_for("workspaces.workspace_reports", workspace_id=workspace.id), active=request.url_rule.rule.startswith('/workspaces//reports') ) }}