{% load i18n horizon humanize bootstrap %} {% block help_message %} {% endblock %}

{% trans "Flavor Details" %}

{% trans "Name" %}
{% trans "VCPUs" %}
{% trans "Root Disk" %} {% trans "GB" %}
{% trans "Ephemeral Disk" %} {% trans "GB" %}
{% trans "Total Disk" %} {% trans "GB" %}
{% trans "RAM" %} {% trans "MB" %}

{% trans "Project Limits" %}

{% trans "Number of Instances" %} {% blocktrans trimmed with used=usages.totalInstancesUsed|intcomma quota=usages.maxTotalInstances|intcomma|quotainf %} {{ used }} of {{ quota }} Used {% endblocktrans %}
{{ minifyspace }}
{% widthratio usages.totalInstancesUsed usages.maxTotalInstances 100 as instance_percent %} {% bs_progress_bar instance_percent 0 %}
{{ endminifyspace }}
{% trans "Number of VCPUs" %} {% blocktrans trimmed with used=usages.totalCoresUsed|intcomma quota=usages.maxTotalCores|intcomma|quotainf %} {{ used }} of {{ quota }} Used {% endblocktrans %}
{{ minifyspace }}
{% widthratio usages.totalCoresUsed usages.maxTotalCores 100 as vcpu_percent %} {% bs_progress_bar vcpu_percent 0 %}
{{ endminifyspace }}
{% trans "Total RAM" %} {% blocktrans trimmed with used=usages.totalRAMUsed|intcomma quota=usages.maxTotalRAMSize|intcomma|quotainf %} {{ used }} of {{ quota }} MB Used {% endblocktrans %}
{{ minifyspace }}
{% widthratio usages.totalRAMUsed usages.maxTotalRAMSize 100 as vcpu_percent %} {% bs_progress_bar vcpu_percent 0 %}
{{ endminifyspace }} {% if cinder_enabled %}
{% trans "Number of Volumes" %} {% blocktrans with used=usages.totalVolumesUsed|intcomma quota=usages.maxTotalVolumes|intcomma|quotainf %} {{ used }} of {{ quota }} Used {% endblocktrans %}
{% widthratio usages.totalVolumesUsed usages.maxTotalVolumes 100 as volume_percent %} {% bs_progress_bar volume_percent 0 %}
{% trans "Total Volume Storage" %} {% blocktrans with used=usages.totalGigabytesUsed|intcomma quota=usages.maxTotalVolumeGigabytes|intcomma|quotainf %} {{ used }} of {{ quota }} GiB Used {% endblocktrans %}
{% widthratio usages.totalGigabytesUsed usages.maxTotalVolumeGigabytes 100 as volume_storage_percent %} {% bs_progress_bar volume_storage_percent 0 %}
{% endif %}