Merge pull request #625 from dod-ccpo/blank-slate-landing

Blank slate for no portfolios
This commit is contained in:
George Drummond
2019-02-12 10:19:58 -05:00
committed by GitHub
4 changed files with 56 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
{% extends "base.html" %}
{% from "components/empty_state.html" import EmptyState %}
{% from "components/tooltip.html" import Tooltip %}
{% block global_sidenav %}
{% endblock %}
{% block content %}
{{
EmptyState(
action_href=url_for("task_orders.new", screen=1),
action_label=("portfolios.index.empty.start_button" | translate),
icon="cloud",
message=("portfolios.index.empty.title" | translate),
)
}}
{% endblock %}