Latest scan against {{ summary.target }}
{% if summary.finished_at %} at {{ summary.finished_at }}{% endif %}
— total {{ summary.total }} violations
{# `tracked`, not truthiness: an untracked snapshot's coverage dict is
non-empty but all zeros, and "0 of 0 rules evaluated" states a fact
("nothing was judged") where the truth is "we do not know". #}
{% if summary.coverage and summary.coverage.tracked %}
across {{ summary.coverage.evaluated }} of
{{ summary.coverage.total }} rules evaluated
{# Same reason as above, one level down: a rule that ran still judged
nothing about a node whose data was missing. #}
{% if summary.coverage.node_tracked %}
and {{ summary.coverage.node_checks_evaluated }} of
{{ summary.coverage.node_checks_total }} per-node checks made
{% endif %}
{% endif %}
{% if summary.coverage_note %}
{{ summary.coverage_note }}
{# Not "see which rules": the gap may be per-node, on rules that ran fine. #}
See what was not checked.