Remove alert on reports page
This commit is contained in:
parent
c5ebdf89a7
commit
43cb6477f1
@ -89,17 +89,21 @@
|
|||||||
margin: 6 * $gap $gap 0 $gap;
|
margin: 6 * $gap $gap 0 $gap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.portfolio-applications {
|
@mixin subheading {
|
||||||
.portfolio-applications__header {
|
|
||||||
margin-bottom: 4 * $gap;
|
|
||||||
|
|
||||||
.portfolio-applications__header--title {
|
|
||||||
color: $color-gray-dark;
|
color: $color-gray-dark;
|
||||||
padding: $gap 0;
|
padding: $gap 0;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
opacity: 0.54;
|
opacity: 0.54;
|
||||||
font-size: $small-font-size;
|
font-size: $small-font-size;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.portfolio-applications {
|
||||||
|
.portfolio-applications__header {
|
||||||
|
margin-bottom: 4 * $gap;
|
||||||
|
|
||||||
|
.portfolio-applications__header--title {
|
||||||
|
@include subheading;
|
||||||
}
|
}
|
||||||
|
|
||||||
.portfolio-applications__header--actions {
|
.portfolio-applications__header--actions {
|
||||||
@ -281,3 +285,13 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.portfolio-reports {
|
||||||
|
.portfolio-reports__header {
|
||||||
|
margin-bottom: 4 * $gap;
|
||||||
|
|
||||||
|
.portfolio-reports__header--title {
|
||||||
|
@include subheading;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
{% extends "portfolios/base.html" %}
|
{% extends "portfolios/base.html" %}
|
||||||
|
|
||||||
{% from "components/alert.html" import Alert %}
|
|
||||||
{% from "components/icon.html" import Icon %}
|
{% from "components/icon.html" import Icon %}
|
||||||
{% from "components/empty_state.html" import EmptyState %}
|
{% from "components/empty_state.html" import EmptyState %}
|
||||||
|
|
||||||
@ -8,13 +7,7 @@
|
|||||||
|
|
||||||
{% block portfolio_content %}
|
{% block portfolio_content %}
|
||||||
|
|
||||||
{{ Alert("Budget Report for Portfolio " + portfolio.name,
|
<div class='portfolio-reports'>
|
||||||
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 v-cloak class='funding-summary-row'>
|
<div v-cloak class='funding-summary-row'>
|
||||||
|
|
||||||
<div class='funding-summary-row__col'>
|
<div class='funding-summary-row__col'>
|
||||||
@ -442,7 +435,7 @@
|
|||||||
</table>
|
</table>
|
||||||
</spend-table>
|
</spend-table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user