{% if total == 0 %}
{% comment %}Translators: Number of projects/repositories/strings used in billing when there is no limit{% endcomment %}
{% blocktrans with used=used|intcomma %}Used {{ used }}{% endblocktrans %}
{% else %}
{% comment %}Translators: Number of projects/repositories/strings used in billing from given limit{% endcomment %}
{% blocktrans with used=used|intcomma total=total|intcomma %}Used {{ used }} of {{ total }}{% endblocktrans %}
{% endif %}
{% if total == 0 %}
{% else %}
{% if used > max %}
{% else %}
{% if used > total %}
{% else %}
{% endif %}
{% endif %}
{% endif %}