{% extends 'timeseer.html' %} {% from 'flows.html' import flows_breadcrumb, flows_header with context %} {% from 'macros.html' import bootstrap_icon, visualize_check_score, visualize_series_name, pagination %} {% from 'flow-menu.html' import flow_menu with context %} {% block menu %} {{ flow_menu(kpi.name) }} {% endblock %} {% set title = score.name|capitalize %} {% block breadcrumb %} {{ flows_breadcrumb(block_evaluation, [ (block_evaluation.name, url_for('flow_univariate.display_dashboard', sourcename=source_name, blockevaluationid=block_evaluation.db_id)), title, ]) }} {% endblock %} {% block main %} {% call flows_header(block_evaluation, title) %}
History
{% endcall %}
{% if score.short_help_text %}

{{ score.short_help_text }}

{{ score.name }}

{{ score.html_help_text|safe }}
{% endif %}
{% if series_scores|count > 0 %} {{ pagination( paging, url_for('.score_report', flowname=flow_name, sourcename=source_name, kpi=kpi.name, score=score.name, page=paging.page-1, blockid=block_id, blockevaluationid=block_evaluation.db_id), url_for('.score_report', flowname=flow_name, sourcename=source_name, kpi=kpi.name, score=score.name, page=paging.page+1, blockid=block_id, blockevaluationid=block_evaluation.db_id) ) }} {% if event_frame_types|count > 0 %} {% endif %} {% for score_value, all_scores in series_scores|groupby('score.score') %} {% for score in all_scores|sort(attribute='series.name') %} {% set series = score.series %} {% set value = score.score %} {{ visualize_check_score(value) }} {% if event_frame_types|count > 0 %} {% endif %} {% endfor %} {% endfor %}
Series name Result {% if score.data_type != 'bool' %} (higher is better) {% endif %} Event frames
{{ visualize_series_name(series.name) }} {% if event_frame_types|count == 1 %} List event frames {% else %} {% endif %}
{{ pagination( paging, url_for('.score_report', flowname=flow_name, sourcename=source_name, kpi=kpi.name, score=score.name, page=paging.page-1, blockevaluationid=block_evaluation.db_id), url_for('.score_report', flowname=flow_name, sourcename=source_name, kpi=kpi.name, score=score.name, page=paging.page+1, blockevaluationid=block_evaluation.db_id) ) }} {% else %}
No issues detected.
{% endif %}
{% endblock %}