{# Vendored from packages/web/src/governor_web/templates/opportunities/_summary_cards.html and adapted for audit. v0.0.16: dropped every Savings card — "Estimated Savings", "Projected Savings", "Clearing Savings" — because audit doesn't run dry-runs and refuses to surface the existing detection rules' hardcoded-percentage savings figures. Audit (local_runtime_mode = True) now shows 2 cards: Active Opportunities + Query Cost. #} {% set coverage_pct = ((summary.with_solutions_count / summary.active_count) * 100) if summary.active_count else 0 %}
Active Opportunities
{{ summary.active_count }}
Query Cost
{{ summary.total_query_cost | format_usd }}
Estimated Savings
{{ summary.total_possible_savings | format_usd }}
Projected Savings
{{ summary.total_savings | format_usd }}
Clearing Savings
{{ summary.clearing_savings | default(0) | format_usd }}