{% extends 'timeseer.html' %} {% from 'flows.html' import flows_header with context %} {% from 'macros.html' import bootstrap_icon %} {% from 'flow-menu.html' import flow_menu with context %} {% block scripts %} {% endblock %} {% block menu %} {{ flow_menu(kpi.name) }} {% endblock %} {% block main %} {% call flows_header(block_evaluation.flow_evaluation, score.name|capitalize) %}
History
{% endcall %}
{% if score.short_help_text %}

{{ score.short_help_text }}

{{ score.name }}

{{ score.html_help_text|safe }}
{% endif %}
{% if score_distribution|map('last')|sum > 0 %}

Evaluated over {{ score_distribution|map('last')|sum }} series:

{% if score.data_type == 'bool' %}
{% for value, count in score_distribution %} {% if value in [0, 90] %} {% endif %} {% endfor %}
{{ value }} {{ count }}
{% else %}
{% for value, count in score_distribution %} {% endfor %}
{{ score.name }} score Bin start Bin end Number of time series
{{ value }} - {{ value + 10 }} {{ value }} {{ value + 10 }} {{ count }}
{% endif %}
{% endif %}
{% endblock %}