{% extends 'timeseer.html' %} {% from 'data-service-header.html' import data_service_breadcrumb, data_service_header with context %} {% from 'macros.html' import bootstrap_icon %} {% from 'data-service-menu.html' import data_service_menu with context %} {% block csp_style %} 'self' 'unsafe-inline' {% endblock %} {% block scripts %} {% endblock %} {% block menu %} {{ data_service_menu(kpi.name) }} {% endblock %} {% set title = score.name|capitalize %} {% block breadcrumb %} {{ data_service_breadcrumb(view_evaluation, [ (kpi.name, url_for('data_services.kpi_report', viewevaluationid=view_evaluation.db_id, kpi=kpi.name, sourcename=source_name)), title ]) }} {% endblock %} {% block main %} {% call data_service_header(view_evaluation, title) %}
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 %}