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

Get started

{% for default_flow, block_evaluation in block_evaluations.items() %}
{% if block_evaluation is none %} {% if series_count[default_flow] == 0 %} {% else %} {% endif %} {% else %} {% if state[block_evaluation].flow_state.is_completed() %} {% if state[block_evaluation].block_state.failed == state[block_evaluation].block_state.completed %} {% else %} {% for score in quadrant_scores[block_evaluation]|sort(attribute='name.value') %}
{{ visualize_split_kpi_score(score.score) }}
{{ score.name.value|capitalize }}
{% endfor %} {% endif %} {% else %} {% endif %} {% endif %}
{% if block_evaluation is not none %} {% endif %}
{% endfor %}
{% endblock %}