Merge pull request #313 from dod-ccpo/spend-table-labels
Labels for spend table
This commit is contained in:
commit
dc46608ede
@ -126,6 +126,7 @@
|
|||||||
expiration-date='{{ expiration_date }}'
|
expiration-date='{{ expiration_date }}'
|
||||||
v-bind:months='{{ cumulative_budget.months | tojson }}'
|
v-bind:months='{{ cumulative_budget.months | tojson }}'
|
||||||
inline-template>
|
inline-template>
|
||||||
|
|
||||||
<div class='budget-chart panel' ref='panel'>
|
<div class='budget-chart panel' ref='panel'>
|
||||||
<header class='budget-chart__header panel__heading panel__heading--tight'>
|
<header class='budget-chart__header panel__heading panel__heading--tight'>
|
||||||
<h2 class='h3'>Cumulative Budget</h2>
|
<h2 class='h3'>Cumulative Budget</h2>
|
||||||
@ -351,12 +352,12 @@
|
|||||||
<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'>{{ 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 previous-month'>{{ prev_month.strftime('%B %Y') }}</th>
|
||||||
<th scope='col' class='table-cell--align-right current-month'>{{ current_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>
|
<th class='current-month'>% of total spend this month</th>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
<tbody class='spend-table__workspace'>
|
<tbody class='spend-table__workspace'>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope='row'>Workspace Total</th>
|
<th scope='row'>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(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 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--align-right current-month'>{{ workspace_totals.get(current_month_index, 0) | dollars }}</td>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user