{% extends 'nova/base.html' %} {% load parse_date %} {% load sizeformat %} {%load i18n%} {% block sidebar %} {% with current_sidebar="overview" %} {{block.super}} {% endwith %} {% endblock %} {% block page_header %} {# to make searchable false, just remove it from the include statement #} {% include "horizon/common/_page_header.html" with title=_("Overview") %} {% endblock page_header %} {% block dash_main %}
{% if usage.instances %}

CPU

RAM

Disk

{% trans "Download CSV"%} »

Server Usage Summary {% if show_terminated %} ( {% trans "Hide Terminated"%} ) {% else %} ( {% trans "Show Terminated"%} ) {% endif %}

{% 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 %}
{% url horizon:nova:images:index as dash_img_url%}

{% trans "Info"%}

{% blocktrans %}There are currently no instances.

You can launch an instance from the Images Page.{% endblocktrans %}

{% endif %} {% endblock %}