{% if data.usageLimit is empty %}
{{ data.used }} / ∞
{% else %} {% if data.used == data.usageLimit %} {% set color = 'danger' %} {% elseif data.used > data.usageLimit / 2 %} {% set color = 'warning' %} {% else %} {% set color = 'success' %} {% endif %}
{{ data.used }} / {{ data.usageLimit }}
{% endif %}