{% extends 'series-layout.html' %} {% block menu %} {{ series_menu('History') }} {% endblock %} {% block series_title %}

History

{% endblock %} {% block series_content %} {% if flow_evaluation_groups|count > 1 %}
Charted scores are calculated based on all available data, not on the data from the previous point in time.
{% 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 %}
Evaluate "{{ block_evaluation.flow_evaluation.group.flow.name }}" multiple times to visualize the score history.
{% endif %} {% endblock series_content %}