{% load i18n horizon humanize bootstrap %}

{% trans "Description:" %}

{% block title %}{% trans "Volumes are block devices that can be attached to instances." %}{% endblock %}

{% trans "Volume Type Description:" %}

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

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