{% extends 'timeseer.html' %} {% from 'flows.html' import flows_header with context %} {% from 'macros.html' import bootstrap_icon, menu, visualize_score %} {% from 'flow-menu.html' import flow_menu with context %} {% block styles %} {% endblock %} {% block menu %} {{ flow_menu(kpi.name) }} {% endblock %} {% block main %} {% call flows_header(block_evaluation.flow_evaluation, kpi.name) %} History {% endcall %}
{% if kpi.short_help_text != "" %}

{{ kpi.short_help_text }}

{% endif %}

{{ kpi.name }}

{{ kpi.html_help_text|safe }}
{% if check_scores|count > 0 %} {% for result in check_scores %} {{ visualize_score(result.score) }} {% endfor %}
Check Score (higher is better)
{{ result.metadata.name|capitalize }} {% if result.metadata.short_help_text %} {% endif %}
{% endif %}
{% endblock %}