← all checks
{{ check_id }}
{% if latest %}
Score
{{ "%.4f"|format(latest.score) }}
Verdict
{{ latest.verdict }}
Last run
{{ latest.ran_at }}
{{ latest.plain_english }}
{% endif %}
Run history
{% if runs %}
Ran at
Score
Verdict
Summary
{% for r in runs %}
{{ r.ran_at }}
{{ "%.4f"|format(r.score) }}
{{ r.verdict }}
{{ r.plain_english }}
{% endfor %}
{% else %}
No runs found for this check.
{% endif %}