{% macro movers_table(top_mover) %} {% if top_mover %}
Attribution

Top movers — who drove the change

{{ top_mover.dimension_label }} {{ top_mover.value }} covers {{ top_mover.contribution_pct | pct2 }} of the {{ top_mover.metric_label | lower }} move.

{% for m in top_mover.movers %} {% endfor %}
{{ top_mover.dimension_label }} Current Baseline Delta Covers
{{ m.value }} {% if m.current is not none %}{{ m.current | big_number }}{% else %}—{% endif %} {% if m.baseline is not none %}{{ m.baseline | big_number }}{% else %}—{% endif %} {% set d = m.absolute_delta or 0 %} {% if d > 0 %}+{% endif %}{{ d | big_number }} {% if m.contribution_pct is not none %}{{ m.contribution_pct | pct2 }}{% else %}—{% endif %}
{% endif %} {% endmacro %}