{% load i18n horizon humanize bootstrap %}

{% trans "Description:" %}

{% blocktrans %}Volumes are block devices that can be attached to instances.{% endblocktrans %}

{% trans "Volume Type Description:" %}

{% block head %}{% trans "Volume Limits" %}{% endblock %}

{% trans "Total Gibibytes" %}
{% blocktrans with used=usages.gigabytesUsed|intcomma quota=usages.maxTotalVolumeGigabytes|intcomma|quotainf %}{{ used }} of {{ quota }} GiB Used{% endblocktrans %}
{{ minifyspace }}
{% widthratio usages.gigabytesUsed usages.maxTotalVolumeGigabytes 100 as gigabytes_percent %} {% bs_progress_bar gigabytes_percent 0 %}
{{ endminifyspace }}
{% block type_title %}{% trans "Number of Volumes" %}{% endblock %}
{% blocktrans with used=usages.volumesUsed|intcomma quota=usages.maxTotalVolumes|intcomma|quotainf %}{{ used }} of {{ quota }} Used{% endblocktrans %}
{{ minifyspace }}
{% block show_progress_bar %} {% widthratio usages.volumesUsed usages.maxTotalVolumes 100 as volumes_percent %} {% if usages.numRequestedItems %} {% widthratio 100 usages.maxTotalVolumes usages.numRequestedItems as single_step %} {% else %} {% widthratio 100 usages.maxTotalVolumes 1 as single_step %} {% endif %} {% bs_progress_bar volumes_percent single_step %} {% endblock %}
{{ endminifyspace }}