{% extends 'nova/base.html' %} {% load i18n parse_date sizeformat %} {% block page_header %} {% include "horizon/common/_page_header.html" with title="Overview: "|add:"This page shows your cloud usage." %} {% endblock page_header %} {% block dash_main %} {% if usage.instances %}

CPU

RAM

Disk

{% trans "Download CSV" %} »

Server Usage Summary

{% for instance in instances %} {% if instance.ended_at %} {% else %} {% endif %} {% empty %} {% endfor %}
{% trans "ID" %} {% trans "Name" %} {% trans "User" %} {% trans "VCPUs" %} {% trans "Ram Size" %} {% trans "Disk Size" %} {% trans "Flavor" %} {% trans "Uptime" %} {% trans "Status" %}
{{ instance.id }} {{ instance.name }} {{ instance.user_id }} {{ instance.vcpus }} {{ instance.ram_size|mbformat }} {{ instance.disk_size }}GB {{ instance.flavor }} {{ instance.uptime_at|timesince }} {{ instance.state|lower|capfirst }}
{% trans "No active instances." %}
{% else %} {% include 'nova/instances_and_volumes/instances/_no_instances.html' %} {% endif %} {% endblock %}