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