Remove alert on reports page

This commit is contained in:
Patrick Smith
2019-02-08 11:00:53 -05:00
parent c5ebdf89a7
commit 43cb6477f1
2 changed files with 22 additions and 15 deletions

View File

@@ -1,6 +1,5 @@
{% extends "portfolios/base.html" %}
{% from "components/alert.html" import Alert %}
{% from "components/icon.html" import Icon %}
{% from "components/empty_state.html" import EmptyState %}
@@ -8,13 +7,7 @@
{% block portfolio_content %}
{{ Alert("Budget Report for Portfolio " + portfolio.name,
message="<p>Track your monthly and cumulative expenditures for your portfolio, applications, and environments below.</p>\
<p>Please note that the projected spend is based on the <em>average expense over the last three completed months</em> and therefore does not account for future changes that might be made in scale or configuration of your cloud services.</p>",
actions=[
{"label": "Learn More", "href": url_for('atst.helpdocs'), "icon": "info"}
] ) }}
<div class='portfolio-reports'>
<div v-cloak class='funding-summary-row'>
<div class='funding-summary-row__col'>
@@ -442,7 +435,7 @@
</table>
</spend-table>
</div>
{% endif %}
</div>
{% endblock %}