{% 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 %}
{% 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."%} |