diff --git a/openstack_dashboard/dashboards/project/instances/templates/instances/_flavors_and_quotas.html b/openstack_dashboard/dashboards/project/instances/templates/instances/_flavors_and_quotas.html
index 818163f35e..180ef08d53 100644
--- a/openstack_dashboard/dashboards/project/instances/templates/instances/_flavors_and_quotas.html
+++ b/openstack_dashboard/dashboards/project/instances/templates/instances/_flavors_and_quotas.html
@@ -19,9 +19,11 @@
{% trans "Project Limits" %}
{% trans "Number of Instances" %}
- {% blocktrans trimmed with used=usages.totalInstancesUsed|intcomma quota=usages.maxTotalInstances|intcomma|quotainf %}
- {{ used }} of {{ quota }} Used
- {% endblocktrans %}
+
+ {% blocktrans trimmed with used=usages.totalInstancesUsed|intcomma quota=usages.maxTotalInstances|intcomma|quotainf %}
+ {{ used }} of {{ quota }} Used
+ {% endblocktrans %}
+
{{ minifyspace }}
@@ -37,9 +39,11 @@
{% trans "Number of VCPUs" %}
- {% blocktrans trimmed with used=usages.totalCoresUsed|intcomma quota=usages.maxTotalCores|intcomma|quotainf %}
- {{ used }} of {{ quota }} Used
- {% endblocktrans %}
+
+ {% blocktrans trimmed with used=usages.totalCoresUsed|intcomma quota=usages.maxTotalCores|intcomma|quotainf %}
+ {{ used }} of {{ quota }} Used
+ {% endblocktrans %}
+
{{ minifyspace }}
@@ -55,9 +59,11 @@
{% trans "Total RAM" %}
- {% blocktrans trimmed with used=usages.totalRAMUsed|intcomma quota=usages.maxTotalRAMSize|intcomma|quotainf %}
- {{ used }} of {{ quota }} MB Used
- {% endblocktrans %}
+
+ {% blocktrans trimmed with used=usages.totalRAMUsed|intcomma quota=usages.maxTotalRAMSize|intcomma|quotainf %}
+ {{ used }} of {{ quota }} MB Used
+ {% endblocktrans %}
+
{{ minifyspace }}
@@ -74,8 +80,11 @@
{% if cinder_enabled %}
{% trans "Number of Volumes" %}
- {% blocktrans with used=usages.totalVolumesUsed|intcomma quota=usages.maxTotalVolumes|intcomma|quotainf %}
- {{ used }} of {{ quota }} Used{% endblocktrans %}
+
+ {% blocktrans with used=usages.totalVolumesUsed|intcomma quota=usages.maxTotalVolumes|intcomma|quotainf %}
+ {{ used }} of {{ quota }} Used
+ {% endblocktrans %}
+
{% trans "Total Volume Storage" %}
- {% blocktrans with used=usages.gigabytesUsed|intcomma quota=usages.maxTotalVolumeGigabytes|intcomma|quotainf %}
- {{ used }} of {{ quota }} GiB Used{% endblocktrans %}
+
+ {% blocktrans with used=usages.gigabytesUsed|intcomma quota=usages.maxTotalVolumeGigabytes|intcomma|quotainf %}
+ {{ used }} of {{ quota }} GiB Used
+ {% endblocktrans %}
+