{% include 'create_inst_block.html' %}
{% include 'errors_block.html' %}
{% if request.user.is_superuser %}
Name |
Host |
VCPU |
Memory |
Status |
Actions |
{% for host, inst in all_host_vms.items %}
{% for vm, info in inst.items %}
{{ vm }}
|
{{ host.1 }}
|
{{ info.vcpu }} |
{{ info.memory }} {% trans "MB" %} |
{% ifequal info.status 1 %}
{% trans "Running" %}
{% endifequal %}
{% ifequal info.status 5 %}
{% trans "Shutoff" %}
{% endifequal %}
{% ifequal info.status 3 %}
{% trans "Suspend" %}
{% endifequal %}
|
|
{% endfor %}
{% endfor %}
{% else %}
Name |
VCPU |
Memory |
Status |
Actions |
{% for host, vm in all_user_vms.items %}
{{ vm.name }}
|
{{ vm.vcpu }} |
{{ vm.memory }} {% trans "MB" %} |
{% ifequal vm.status 1 %}
{% trans "Running" %}
{% endifequal %}
{% ifequal vm.status 5 %}
{% trans "Shutoff" %}
{% endifequal %}
{% ifequal vm.status 3 %}
{% trans "Suspend" %}
{% endifequal %}
|
|
{% endfor %}
{% endif %}