{% extends 'dash_base.html' %} {% load parse_date %} {% load sizeformat %} {% 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 "_page_header.html" with title="Overview" %} {% endblock page_header %} {% block dash_main %}
{% if usage.instances %}

CPU

RAM

Disk

Download CSV »

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

{% for instance in instances %} {% if instance.ended_at %} {% else %} {% endif %} {% empty %} {% endfor %}
ID Name User VCPUs Ram Size Disk Size Flavor Uptime 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}}
No active instances.
{% else %}

Info

There are currently no instances.

You can launch an instance from the Images Page.

{% endif %} {% endblock %}