{% extends "base.html" %} {% from "_macros.html" import rate %} {% set nav = 'trend' %} {% block body %}

Trend for one system

A single run says whether a system is good today. Improving it needs the curve — this is the view that answers "did the last change help?".

{% if datasets %}
{% endif %}

Filtered to one dataset on purpose: a rate on PMo and a rate on fixtures answer different questions and must not share an axis.

{% if points %}
{% for g in gates %}{% endfor %} {% for p in points %} {% for g in gates %}{% endfor %} {% endfor %}
RunVersionStarted{{ g.replace('gate.','') }}
{{ p.run_id }} {{ p.sut_version }} {{ p.started[:19] }}{{ rate(p.rates.get(g)) }}
{% elif system %}

No scored runs for this system yet.

{% endif %} {% endblock %}