{% extends 'timeseer.html' %} {% from 'flows.html' import flows_header with context %} {% from 'macros.html' import bootstrap_icon, menu_back %} {% block scripts %} {% endblock %} {% block styles %} {% endblock %} {% block menu %} {{ menu_back(url_for('.score_report', flowname=flow_name, sourcename=source_name, kpi=kpi.name, score=score.name, blockevaluationid=block_evaluation.db_id)) }} {% endblock %} {% block main %} {{ flows_header(block_evaluation.flow_evaluation, score.name|capitalize + ' history') }}
{% if score.short_help_text %}

{{ score.short_help_text }}

{{ score.name }}

{{ score.html_help_text|safe }}
{% endif %} {% if evolution|count > 1 %}
{% for group in flow_evaluation_groups|sort(attribute='date') %} {% for block_evaluation_score in evolution if block_evaluation_score.block_evaluation.flow_evaluation.group.db_id == group.db_id %} {% endfor %} {% endfor %}
{{ group.date|datetimeformat }} {{ block_evaluation_score.score }}
{% else %}

Generate multiple reports for "{{ flow_name }}" to visualize the history of "{{ score.name }}".

{% endif %}
{% endblock %}