{% from "partials/_macros.html" import card_header %} {% set total = (row_counts | sum(attribute='rows')) if row_counts else 0 %} {% set maxr = (row_counts | map(attribute='rows') | max) if row_counts else 0 %}
| {{ r.name }} | {{ r.rows }} | {# change vs previous run #}{% if empty %} empty {% elif r.is_new %} new {% elif r.delta is not none and r.delta > 0 %} ▲ +{{ r.delta }} {% elif r.delta is not none and r.delta < 0 %} ▼ −{{ -r.delta }} {% elif r.delta == 0 %} — {% endif %} | {# proportional bar; non-zero gets a minimum visible width #}
{% if not empty %}
{% set pct = (r.rows / maxr * 100) if maxr > 0 else 0 %}
|