From 8d66a5cb38bdfce67a8087ab44868f7d000ad5a0 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Mon, 20 Aug 2018 14:38:56 -0400 Subject: [PATCH] workspace report base markup --- templates/workspace_reports.html | 45 ++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 templates/workspace_reports.html diff --git a/templates/workspace_reports.html b/templates/workspace_reports.html new file mode 100644 index 00000000..29bc5eaa --- /dev/null +++ b/templates/workspace_reports.html @@ -0,0 +1,45 @@ +{% extends "base_workspace.html" %} + +{% from "components/alert.html" import Alert %} + +{% block workspace_content %} + + {{ Alert('Funding Information & Reports for Workspace 123', + message="

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

", + actions=[ + {"label": "Learn More", "href": "/", "icon": "info"}, + {"label": "Dismiss", "href": "/"} + ], + level='warning' + ) }} + +
+ +
+
+
+

Workspace Total Spend

+
+
+
Budget
+
$100,000,000
+
+ +
+
Remaining
+
$99,798,000
+
+
+
+ + $202,000 of $100,000,000 +
+
+ +
+
T.O. Summary
+
+ +
+ +{% endblock %}