{% extends 'syspanel_base.html' %} {% load parse_date %} {% load sizeformat %} {% block sidebar %} {% with current_sidebar="tenants" %} {{block.super}} {% endwith %} {% endblock %} {% block page_header %} {# to make searchable false, just remove it from the include statement #} {% include "_page_header.html" with title="System Panel Overview" %} {% endblock page_header %} {% block syspanel_main %}
Active Instances: {{usage.total_active_instances}} This month's VCPU-Hours: {{usage.total_cpu_usage|floatformat}} This month's GB-Hours: {{usage.total_disk_usage|floatformat}}
{% if usage.instances %}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|capfirst}} |