356 lines
15 KiB
HTML
356 lines
15 KiB
HTML
{% extends "workspaces/base.html" %}
|
|
|
|
{% from "components/alert.html" import Alert %}
|
|
{% from "components/icon.html" import Icon %}
|
|
|
|
{% block workspace_content %}
|
|
|
|
{{ Alert("Funding Information & Reports for Workspace " + workspace.name,
|
|
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": "/"}
|
|
] ) }}
|
|
|
|
<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'>
|
|
{% set budget = workspace_totals['budget'] %}
|
|
{% set spent = workspace_totals['spent'] %}
|
|
{% set remaining = budget - spent %}
|
|
<div>
|
|
<dt>Budget </dt>
|
|
<dd>{{ budget | dollars }}</dd>
|
|
</div>
|
|
|
|
<div>
|
|
<dt>Remaining</dt>
|
|
<dd>{{ remaining | dollars }}</dd>
|
|
</div>
|
|
</dl>
|
|
</div>
|
|
|
|
<div>
|
|
<meter value='{{ spent }}' min='0' max='{{ budget }}' title='{{ spent | dollars }} Total spend to date'>
|
|
<div class='meter__fallback' style='width:{{ (spent / budget) * 100 }}%;'></div>
|
|
</meter>
|
|
|
|
<dl class='spend-summary__spent'>
|
|
<dt>Total spend to date</dt>
|
|
<dd>{{ spent | dollars }}</dd>
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class='funding-summary-row__col'>
|
|
<div class='panel to-summary'>
|
|
<div class='to-summary__row'>
|
|
|
|
<div class='to-summary__to'>
|
|
<h2 class='to-summary__heading'>Task Order</h2>
|
|
<dl class='to-summary__to-number'>
|
|
<dt class='usa-sr-only'>Task Order Number</dt>
|
|
<dd>1234567890</dd>
|
|
</dl>
|
|
</div>
|
|
|
|
<div class='to-summary__expiration'>
|
|
<dl>
|
|
<div>
|
|
<dt>Expires</dt>
|
|
<dd>November 1, 2019</dd>
|
|
</div>
|
|
|
|
<div>
|
|
<dt>Remaining</dt>
|
|
<dd>200 days</dd>
|
|
</div>
|
|
</dl>
|
|
|
|
<a href='#' class='icon-link'>
|
|
Manage Task Order
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<dl class='to-summary__co'>
|
|
<dt>Contracting Officer</dt>
|
|
<dd>
|
|
Pietro Quirines
|
|
<a class='icon-link' href='mailto:email@email.com'>email@email.com</a>
|
|
</dd>
|
|
</dl>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% set workspace_totals = monthly_totals['workspace'] %}
|
|
{% set current_month_index = current_month.strftime('%m/%Y') %}
|
|
{% set prev_month_index = prev_month.strftime('%m/%Y') %}
|
|
{% set two_months_ago_index = two_months_ago.strftime('%m/%Y') %}
|
|
{% set reports_url = url_for("workspaces.workspace_reports", workspace_id=workspace.id) %}
|
|
|
|
<budget-chart budget={{ budget }} current-month='{{ current_month_index }}' v-bind:months='{{ cumulative_budget.months | tojson }}' inline-template>
|
|
<div class='budget-chart panel' ref='panel'>
|
|
<header class='budget-chart__header panel__heading panel__heading--tight'>
|
|
<h2 class='h3'>Cumulative Budget</h2>
|
|
|
|
<div class='budget-chart__legend'>
|
|
<dl class='budget-chart__legend__spend'>
|
|
<div>
|
|
<dt>Monthly Spend</dt>
|
|
<dd class='budget-chart__legend__dot monthly'><span class='usa-sr-only'>Monthly spend visual key</span></dd>
|
|
</div>
|
|
|
|
<div>
|
|
<dt>Accumulated Spend</dt>
|
|
<dd class='budget-chart__legend__dot accumulated'><span class='usa-sr-only'>Accumulated spend visual key</span></dd>
|
|
</div>
|
|
</dl>
|
|
<dl class='budget-chart__legend__projected'>
|
|
<div>
|
|
<dt>Projected</dt>
|
|
<dd>
|
|
<div class='budget-chart__legend__line spend'><span class='usa-sr-only'>Projected monthly spend visual key</span></div>
|
|
<div class='budget-chart__legend__line accumulated'><span class='usa-sr-only'>Projected accumulated spend visual key</span></div>
|
|
</dd>
|
|
</div>
|
|
</dl>
|
|
</div>
|
|
</header>
|
|
|
|
<svg v-bind:height='height' v-bind:width='width'>
|
|
<g v-for='month in displayedMonths' >
|
|
{# make this clickable to focus on that month #}
|
|
<a v-bind:href='"{{ reports_url }}?month=" + month.date.monthIndex + "&year=" + month.date.year'>
|
|
<title>
|
|
<span v-html='month.date.month + " " + month.date.year'></span> | <!--
|
|
--><template v-if='month.budget'><!--
|
|
--><template v-if='month.budget.spend'>Spend:</template><!--
|
|
--><template v-if='month.budget.projected'>Projected Spend:</template><!--
|
|
--><span v-html='month.spendAmount'></span><!--
|
|
--> | <!--
|
|
--><template v-if='month.budget.cumulative'>Total:</template><!--
|
|
--><template v-if='month.budget.projected'>Projected Total:</template><!--
|
|
--><span v-html='month.cumulativeAmount'></span><!--
|
|
--></template><!--
|
|
|
|
--><template v-else>No spend for this month</template>
|
|
</title>
|
|
|
|
{# container block #}
|
|
<rect
|
|
class='budget-chart__block'
|
|
v-bind:class='{ "budget-chart__block--highlighted": month.isHighlighted }'
|
|
v-bind:width='month.metrics.blockWidth'
|
|
v-bind:x='month.metrics.blockX'
|
|
v-bind:height='height'></rect>
|
|
|
|
{# budget bar #}
|
|
<rect
|
|
v-if='month.budget'
|
|
class='budget-chart__bar'
|
|
v-bind:class='{ "budget-chart__bar--projected": month.budget.projected }'
|
|
v-bind:width='month.metrics.barWidth'
|
|
v-bind:height='month.metrics.barHeight'
|
|
v-bind:x='month.metrics.barX'
|
|
v-bind:y='month.metrics.barY'></rect>
|
|
|
|
{# cumulative dot #}
|
|
<circle
|
|
v-if='month.budget'
|
|
class='budget-chart__cumulative__dot'
|
|
v-bind:r='month.metrics.cumulativeR'
|
|
v-bind:cx='month.metrics.cumulativeX'
|
|
v-bind:cy='month.metrics.cumulativeY'></circle>
|
|
|
|
{# abbreviated cumulative label #}
|
|
<text
|
|
v-if='month.budget'
|
|
v-bind:x='month.metrics.cumulativeX'
|
|
v-bind:y='month.metrics.cumulativeY - 10'
|
|
text-anchor='middle'
|
|
class='budget-chart__label'
|
|
v-html='month.abbreviatedCumulative'></text>
|
|
|
|
{# abbreviated spend label #}
|
|
<text
|
|
v-bind:x='month.metrics.cumulativeX'
|
|
v-bind:y='baseHeight + 20'
|
|
text-anchor='middle'
|
|
class='budget-chart__label'
|
|
v-html='"+" + month.abbreviatedSpend'></text>
|
|
|
|
{# month label #}
|
|
<text
|
|
v-bind:x='month.metrics.cumulativeX'
|
|
v-bind:y='baseHeight + 40'
|
|
text-anchor='middle'
|
|
class='budget-chart__label budget-chart__label--strong'
|
|
v-html='month.date.month'></text>
|
|
</g>
|
|
</a>
|
|
|
|
{# spend/projected budget path lines #}
|
|
<path class='budget-chart__projected-path' v-bind:d='projectedPath'></path>
|
|
<path class='budget-chart__spend-path' v-bind:d='spendPath'></path>
|
|
|
|
{# max budget line #}
|
|
<line
|
|
class='budget-chart__budget-line'
|
|
x1='0'
|
|
v-bind:x2='width'
|
|
v-bind:y1='budgetHeight'
|
|
v-bind:y2='budgetHeight'></line>
|
|
|
|
<text
|
|
x='20'
|
|
v-bind:y='budgetHeight + 20'
|
|
class='budget-chart__label'>Total Budget</text>
|
|
<text
|
|
x='20'
|
|
v-bind:y='budgetHeight + 40'
|
|
class='budget-chart__label'
|
|
v-html='displayBudget'></text>
|
|
</svg>
|
|
</div>
|
|
</budget-chart>
|
|
|
|
<div class='spend-table responsive-table-wrapper'>
|
|
<div class='spend-table__header'>
|
|
<h2 class='spend-table__title'>Total spend per month </h2>
|
|
|
|
<select name='month' id='month' class='spend-table__month-select'>
|
|
<option value='03/2019'>{{ current_month.strftime('%B %Y') }}</option>
|
|
</select>
|
|
</div>
|
|
|
|
<spend-table
|
|
v-bind:projects='{{ monthly_totals['projects'] | tojson }}'
|
|
v-bind:workspace='{{ workspace_totals | tojson }}'
|
|
v-bind:environments='{{ monthly_totals['environments'] | tojson }}'
|
|
current-month-index='{{ current_month_index }}'
|
|
prev-month-index='{{ prev_month_index }}'
|
|
two-months-ago-index='{{ two_months_ago_index }}'
|
|
inline-template>
|
|
<table>
|
|
<thead>
|
|
<th scope='col'><span class='usa-sr-only'>Spending scope</span></th>
|
|
<th scope='col' class='table-cell--align-right previous-month'>{{ two_months_ago.strftime('%B %Y') }}</th>
|
|
<th scope='col' class='table-cell--align-right previous-month'>{{ prev_month.strftime('%B %Y') }}</th>
|
|
<th scope='col' class='table-cell--align-right current-month'>{{ current_month.strftime('%B %Y') }}</th>
|
|
<td class='current-month'></td>
|
|
</thead>
|
|
|
|
<tbody class='spend-table__workspace'>
|
|
<tr>
|
|
<th scope='row'>Workspace Total</th>
|
|
<td class='table-cell--align-right previous-month'>{{ workspace_totals.get(two_months_ago_index, 0) | dollars }}</td>
|
|
<td class='table-cell--align-right previous-month'>{{ workspace_totals.get(prev_month_index, 0) | dollars }}</td>
|
|
<td class='table-cell--align-right current-month'>{{ workspace_totals.get(current_month_index, 0) | dollars }}</td>
|
|
<td class='table-cell--expand current-month meter-cell'>
|
|
<meter value='{{ workspace_totals.get(current_month_index, 0) }}' min='0' max='{{ workspace_totals.get(current_month_index, 0) }}'></meter>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
|
|
<tbody v-for='(project, name) in projectsState' class='spend-table__project'>
|
|
<tr>
|
|
<th scope='rowgroup'>
|
|
<button v-on:click='toggle($event, name)' class='icon-link icon-link--large spend-table__project__toggler'>
|
|
<template v-if='project.isVisible'>{{ Icon('caret_down') }}</template>
|
|
<template v-else>{{ Icon('caret_right') }}</template>
|
|
<span v-html='name'></span>
|
|
</button>
|
|
</th>
|
|
<td class='table-cell--align-right previous-month'>
|
|
<span v-html='formatDollars(project[twoMonthsAgoIndex] || 0)'></span>
|
|
</td>
|
|
|
|
<td class='table-cell--align-right previous-month'>
|
|
<span v-html='formatDollars(project[prevMonthIndex] || 0)'></span>
|
|
</td>
|
|
|
|
<td class='table-cell--align-right current-month'>
|
|
<span v-html='formatDollars(project[currentMonthIndex] || 0)'></span>
|
|
</td>
|
|
|
|
<td class='table-cell--expand current-month meter-cell'>
|
|
<span class='spend-table__meter-value'>
|
|
<span v-html='round( 100 * ((project[currentMonthIndex] || 0) / (workspace[currentMonthIndex] || 1) )) + "%"'></span>
|
|
</span>
|
|
<meter v-bind:value='project[currentMonthIndex] || 0' min='0' v-bind:max='workspace[currentMonthIndex] || 1'>
|
|
<div class='meter__fallback' v-bind:style='"width:" + round( 100 * ((project[currentMonthIndex] || 0) / (workspace[currentMonthIndex] || 1) )) + "%;"'></div>
|
|
</meter>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr v-for='(environment, envName) in environments[name]' v-show='project.isVisible' class='spend-table__project__env'>
|
|
<th scope='rowgroup'>
|
|
<a href='#' class='icon-link spend-table__project__env'>
|
|
{{ Icon('link') }}
|
|
<span v-html='envName'></span>
|
|
</a>
|
|
</th>
|
|
|
|
<td class='table-cell--align-right previous-month'>
|
|
<span v-html='formatDollars(environment[twoMonthsAgoIndex] || 0)'></span>
|
|
</td>
|
|
|
|
<td class='table-cell--align-right previous-month'>
|
|
<span v-html='formatDollars(environment[prevMonthIndex] || 0)'></span>
|
|
</td>
|
|
|
|
<td class='table-cell--align-right current-month'>
|
|
<span v-html='formatDollars(environment[currentMonthIndex] || 0)'></span>
|
|
</td>
|
|
|
|
<td class='table-cell--expand current-month'></td>
|
|
</tr>
|
|
</tbody>
|
|
|
|
{# {% for project_name, project_totals in monthly_totals['projects'].items() %}
|
|
<tbody is='tbody-toggler' class='spend-table__project'>
|
|
<tr>
|
|
<th scope='rowgroup'>
|
|
<button v-on:click='props.toggle' class='icon-link icon-link--large spend-table__project__toggler'>
|
|
<template v-if='props.isVisible'>{{ Icon('caret_down') }}</template>
|
|
<template v-else>{{ Icon('caret_right') }}</template>
|
|
{{ project_name }}
|
|
</button>
|
|
</th>
|
|
<td class='table-cell--align-right previous-month'>{{ project_totals.get(two_months_ago_index, 0) | dollars }}</td>
|
|
<td class='table-cell--align-right previous-month'>{{ project_totals.get(prev_month_index, 0) | dollars }}</td>
|
|
<td class='table-cell--align-right current-month'>{{ project_totals.get(current_month_index, 0) | dollars }}</td>
|
|
<td class='table-cell--expand current-month meter-cell'>
|
|
<span class='spend-table__meter-value'>{{ (100 * (project_totals.get(current_month_index, 0) / workspace_totals.get(current_month_index, 1))) | round | int }}%</span>
|
|
<meter value='{{ project_totals.get(current_month_index, 0) }}' min='0' max='{{ workspace_totals.get(current_month_index, 0) }}'></meter>
|
|
</td>
|
|
</tr>
|
|
|
|
{% for env_name, env_totals in monthly_totals['environments'][project_name].items() %}
|
|
<tr v-show='props.isVisible'>
|
|
<th scope='rowgroup'><a href='#' class='icon-link spend-table__project__env'>{{ Icon('link') }} {{ env_name }}</a></th>
|
|
<td class='table-cell--align-right previous-month'>{{ env_totals.get(two_months_ago_index, 0) | dollars }}</td>
|
|
<td class='table-cell--align-right previous-month'>{{ env_totals.get(prev_month_index, 0) | dollars }}</td>
|
|
<td class='table-cell--align-right current-month'>{{ env_totals.get(current_month_index, 0) | dollars }}</td>
|
|
<td class='table-cell--expand current-month'></td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</template>
|
|
</tbody>
|
|
{% endfor %} #}
|
|
</table>
|
|
</spend-table>
|
|
</div>
|
|
|
|
{% endblock %}
|