workspace report base markup
This commit is contained in:
parent
58435b4e0f
commit
8d66a5cb38
45
templates/workspace_reports.html
Normal file
45
templates/workspace_reports.html
Normal file
@ -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="<p>On this screen you'll find detailed reporting information on this workspace. This message needs to be written better and be dismissable.</p>",
|
||||
actions=[
|
||||
{"label": "Learn More", "href": "/", "icon": "info"},
|
||||
{"label": "Dismiss", "href": "/"}
|
||||
],
|
||||
level='warning'
|
||||
) }}
|
||||
|
||||
<div class='funding-summary-row'>
|
||||
|
||||
<div class='funding-summary-row__col'>
|
||||
<div class='panel spend-summary'>
|
||||
<div class='row'>
|
||||
<h2 class='spend-summary__heading col'>Workspace Total Spend</h2>
|
||||
<dl class='spend-summary__budget'>
|
||||
<div>
|
||||
<dt>Budget</dt>
|
||||
<dd>$100,000,000</dd>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<dt>Remaining</dt>
|
||||
<dd>$99,798,000</dd>
|
||||
</div>
|
||||
</dl>
|
||||
</div>
|
||||
|
||||
<meter value='202000' min='0' max='100000000'>$202,000 of $100,000,000</meter>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class='funding-summary-row__col'>
|
||||
<div class='panel'>T.O. Summary</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
Loading…
x
Reference in New Issue
Block a user