20 lines
645 B
HTML
20 lines
645 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" %}
|
|
<hr>
|
|
{% include "portfolios/reports/application_and_env_spending.html" %}
|
|
</div>
|
|
{% endblock %}
|