{% set axes = [
('inspections', 'Inspections / month', plan_info.max_inspections_month),
('issues', 'Issues / month', plan_info.max_issues_month),
('users', 'Active Users (total)', plan_info.max_users),
('facilities', 'Active Facilities (total)', plan_info.max_facilities),
] %}
{% for key, label, limit in axes %}
{% set current = quota_usage.get(key, 0) %}
{% set pct = ((current / limit * 100) | int) if limit else 0 %}
{% set over = limit and current >= limit %}
{{ label }}
{{ current }}{% if limit %} / {{ limit }}{% else %} / unlimited{% endif %}
{% if limit %}
{% endif %}
{% endfor %}