{% load i18n horizon humanize sizeformat %} {% spaceless %}

{% trans "Limit Summary" %}

{% for quota in charts %} {% if forloop.first or forloop.counter0|divisibleby:6 %}
{% endif %}
{{ quota.name }}
{% if quota.max|quotainf != '-1' %} {% if quota.type == "totalRAMUsed" %} {% blocktrans trimmed with used=quota.used|mb_float_format available=quota.max|quotainf|mb_float_format %} Used {{ used }} of {{ available }} {% endblocktrans %} {% elif quota.type == "totalGigabytesUsed" %} {% blocktrans trimmed with used=quota.used|diskgbformat available=quota.max|quotainf|diskgbformat %} Used {{ used }} of {{ available }} {% endblocktrans %} {% else %} {% blocktrans trimmed with used=quota.used|intcomma available=quota.max|quotainf|intcomma %} Used {{ used }} of {{ available }} {% endblocktrans %} {% endif %} {% else %} {% blocktrans trimmed with used=quota.used|intcomma %} Used {{ used }} (No Limit) {% endblocktrans %} {% endif %}
{% if forloop.last or forloop.counter|divisibleby:6 %} {% if not forloop.first %}
{% endif %} {% endif %} {% endfor %}
{% endspaceless %}