{% extends "workspaces/base.html" %} {% from "components/alert.html" import Alert %} {% from "components/icon.html" import Icon %} {% from "components/empty_state.html" import EmptyState %} {% block workspace_content %} {{ 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": url_for('atst.helpdocs'), "icon": "info"} ] ) }}Spending scope | {{ two_months_ago.strftime('%B %Y') }} | {{ prev_month.strftime('%B %Y') }} | {{ current_month.strftime('%B %Y') }} | % of total spend this month |
---|---|---|---|---|
Total | {{ workspace_totals.get(two_months_ago_index, 0) | dollars }} | {{ workspace_totals.get(prev_month_index, 0) | dollars }} | {{ workspace_totals.get(current_month_index, 0) | dollars }} |
|
|
||||
{{ Icon('link') }} |