{% macro score_movement(entities, kpis) %}
Movement vs baseline
{% if kpis.n_moved == 0 %}

No host scores moved versus baseline

All {{ kpis.n_total }} entity scores are identical to the prior equivalent window. This report describes the current health snapshot, not change over time.

{% else %}

Hosts whose score changed

{% set moved = entities | selectattr("delta", "ne", 0) | list %} {{ slopegraph(moved, "baseline", "current") }}
{% endif %}
{% endmacro %}