{% extends 'timeseer.html' %} {% from 'data-service-header.html' import data_service_breadcrumb, data_service_header with context %} {% from 'macros.html' import bootstrap_icon, menu, visualize_score %} {% from 'data-service-menu.html' import data_service_menu with context %} {% block csp_style %} 'self' 'unsafe-inline' {% endblock %} {% block styles %} {% endblock %} {% block menu %} {{ data_service_menu(kpi.name) }} {% endblock %} {% block scripts %} {% endblock %} {% set title = kpi.name %} {% block breadcrumb %} {{ data_service_breadcrumb(view_evaluation, [ title ]) }} {% endblock %} {% block main %} {% call data_service_header(view_evaluation, title) %} History {% endcall %} {% if kpi.short_help_text != "" %}

{{ kpi.short_help_text }}

{{ kpi.name }}

{{ kpi.html_help_text|safe }}
{% endif %} {% if scores|count > 0 %}
{% for result in scores %} {{ visualize_score(result.score) }} {% endfor %}
Check Score (higher is better)
{% if result.metadata.name in multivariate_checks %} {{ result.metadata.name|capitalize }} {% else %} {{ result.metadata.name|capitalize }} {% endif %} {% if result.metadata.short_help_text %} {% endif %}
{% else %}
No results to display.
{% endif %} {% if view_evaluation.data_service_view.data_service.time_range.has_no_time_range() is false %}

Bad actor visualization

Loading chart...
{% endif %} {% endblock %}