{% macro movement_table(metrics) %}
Movement detail

Per-metric movement vs prior week

{% if metrics %} {% for m in metrics %} {% endfor %}
Metric Current Baseline Delta % change Verdict
{{ m.label }} {% if m.confidence_chip %} {{ m.confidence_chip.label }} {% endif %} {% if m.current is not none %}{{ m.current | big_number }}{% else %}—{% endif %} {% if m.baseline is not none %}{{ m.baseline | big_number }}{% else %}—{% endif %} {% if m.is_volume %} {% if m.absolute_delta > 0 %}+{% endif %}{{ m.absolute_delta | big_number }} {% else %} {{ m.absolute_delta | signed_pp }} {% endif %} {{ m.pct_change | signed_pct }} {{ m.verdict_label }}
{% else %}

No metrics in this artifact.

{% endif %}
{% endmacro %}