{% set r = 40 %}
{% set c = (2 * 3.141592653589793 * r) %}
{% if quota_gb and quota_gb > 0 %}
{% set used = quota_usage %}
{% set pct = (used / quota_gb) if quota_gb > 0 else 0 %}
{% else %}
{% set used = 0 %}
{% set pct = 0 %}
{% endif %}
{% if pct >= 0.9 %}
{% set stroke_color = '#DF2935' %}
{% elif pct >= 0.6 %}
{% set stroke_color = '#FDCA40' %}
{% else %}
{% set stroke_color = '#3772FF' %}
{% endif %}
{{ (pct * 100) | round }}%
{{ ('%.1f' % used) if (used is not none) else '0.0' }} / {{ ('%.1f' % quota_gb) if (quota_gb is not none) else '0.0' }} GB