{% 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 %}
{% if inconsistencies|count > 0 %}
{% endif %} {% endblock %}