{% extends 'timeseer.html' %} {% from 'macros.html' import visualize_split_kpi_score, bootstrap_icon %} {% block main %}

Get started

{% if block_evaluations|count > 1 or pattern %}
{% endif %}
{% for data_service, block_evaluation in block_evaluations.items() %}
{% if block_evaluation is none %} {{ data_service }} {% else %} {{ data_service }} {% endif %}
{% if data_service in sources %} {{ series_count[data_service] }} series {% else %}
{{ series_count[data_service] }} series
{% endif %}
{% if block_evaluation is none %} {% if series_count[data_service] == 0 %} {% else %} {% endif %} {% else %} {% if state[data_service].flow_state.is_completed() %} {% if state[data_service].block_state.failed == state[data_service].block_state.completed %} {% else %} {% if favorite_kpi_scores[data_service]|count > 0 %} {% for score in favorite_kpi_scores[data_service]|sort(attribute='name') %}
{{ visualize_split_kpi_score(score.score) }}
{{ score.name|capitalize }}
{% endfor %} {% else %} {% endif %} {% endif %} {% else %} {% endif %} {% endif %}
{% if block_evaluation is not none %} {% endif %}
{% endfor %} {% for data_service_name, view_evaluations in data_service_evaluations.items() %}
{{ data_service_name }}
{% if view_evaluations|count == 0 %}
No flow contributed to the data service.
{% else %} {% if view_evaluations|count == 1 %} {% if state[view_evaluations[0].db_id].is_completed() %}
{% for score in favorite_kpi_scores[view_evaluations[0].db_id]|sort(attribute='name') %}
{{ visualize_split_kpi_score(score.score) }}
{{ score.name|capitalize }}
{% endfor %}
{% else %}
Evaluation in progress
{% endif %} {% else %} {% set ns = namespace(header_added=false) %} {% for view_evaluation in view_evaluations %} {% if state[view_evaluation.db_id].is_completed() and not ns.header_added %} {% set ns.header_added = true %} {% for score in favorite_kpi_scores[view_evaluation.db_id]|sort(attribute='name') %} {% endfor %} {% endif %} {% endfor %} {% for view_evaluation in view_evaluations %} {% if state[view_evaluation.db_id].is_completed() %} {% for score in favorite_kpi_scores[view_evaluation.db_id]|sort(attribute='name') %} {% endfor %} {% else %} {% endif %} {% endfor %}
Series set name{{ score.name|capitalize }} {{isHeaderPresent}}
{{ view_evaluation.data_service_view.series_set_name }} {{ visualize_split_kpi_score(score.score) }} {{ bootstrap_icon('arrow-right', 'text-dark fw-bolder') }}
{{ view_evaluation.data_service_view.series_set_name }} Evaluation in progress
{% endif %} {% endif %}
{% if view_evaluations|count == 1 %} {% endif %}
{% endfor %}
{% if inconsistencies|count > 0 %}
{% endif %} {% endblock %}