{% if budgets %} {% for b in budgets %} {% endfor %}
Scope Daily Limit Today's Spend Usage Status
{{ b.key_name }} ${{ "%.2f"|format(b.daily_limit) }} {% if b.status %}${{ "%.4f"|format(b.status.today_spend) }}{% else %}—{% endif %} {% if b.status %}
{{ "%.0f"|format(b.status.pct_used) }}%
{% else %} {% endif %}
{% if b.status %} {% if b.status.status == 'exceeded' %} Exceeded {% elif b.status.status == 'warning' %} Warning {% else %} OK {% endif %} {% else %} {% endif %}
{% else %}

No budgets configured.

{% endif %}