{% extends 'nova/base.html' %} {% load i18n parse_date sizeformat %} {% block title %}Instance Overview{% endblock %} {% 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" %} {% if show_terminated %} {% trans "Hide Terminated" %} {% else %} {% trans "Show Terminated" %} {% endif %}

Server Usage Summary

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