{% extends 'timeseer.html' %} {% from 'macros.html' import bootstrap_icon, menu_back %} {% block scripts %} {% endblock %} {% block styles %} {% endblock %} {% block menu %} {{ menu_back(url_for('.score_report', sourcename=source_name, kpi=kpi.name, score=score.name)) }} {% endblock %} {% block main %}

{{ score.name|capitalize }} history

{{ source_name }}

{% if score.short_help_text %}

{{ score.short_help_text }}

{{ score.name }}

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

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

{% endif %}
{% endblock %}