{# Storage Optimization — one compact card per dataset where switching from logical to physical storage billing would lower monthly cost. Filters out datasets with sub-$1 monthly savings (rounding noise — no point recommending an action that saves nothing). Audit is read-only; the ALTER SCHEMA + evidence lives on the opportunity detail page that each card links to. #} {% set worth_acting = storage_panel | selectattr('monthly_savings', 'ge', 1) | list %} {% if worth_acting %}
{{ row.dataset_short }}
Switch to physical billing
Save ~${{ "%.0f"|format(row.monthly_savings) }}/mo · {{ "%.0f"|format(row.savings_pct) }}%
{% endfor %}