- Edits views to only show spending at the portfolio level -- no longer broken out by JEDI CLIN - Removes Monthly Spending table -- keeps the template, just no longer uses it. - Removes amount unspent from the expired funding table
18 lines
563 B
HTML
18 lines
563 B
HTML
{% extends "portfolios/base.html" %}
|
|
|
|
{% from "components/sticky_cta.html" import StickyCTA %}
|
|
|
|
|
|
{% block portfolio_content %}
|
|
{{ StickyCTA("Reports") }}
|
|
|
|
<div class="portfolio-reports col col--grow">
|
|
{% include "fragments/flash.html" %}
|
|
<p class="row estimate-warning">{{ "portfolios.reports.estimate_warning" | translate }}</p>
|
|
{% include "portfolios/reports/portfolio_summary.html" %}
|
|
<hr>
|
|
{% include "portfolios/reports/obligated_funds.html" %}
|
|
{% include "portfolios/reports/expired_task_orders.html" %}
|
|
</div>
|
|
{% endblock %}
|