17 lines
413 B
HTML
17 lines
413 B
HTML
{% extends "base.html" %}
|
|
|
|
{% from "components/empty_state.html" import EmptyState %}
|
|
{% from "components/tooltip.html" import Tooltip %}
|
|
|
|
{% block content %}
|
|
{{
|
|
EmptyState(
|
|
action_href=url_for("task_orders.get_started"),
|
|
action_label=("portfolios.index.empty.start_button" | translate),
|
|
icon="cloud",
|
|
message=("portfolios.index.empty.title" | translate),
|
|
)
|
|
}}
|
|
{% endblock %}
|
|
|