{% load i18n %}
{% trans "Name" %} {% trans "Description" %} |
{% trans "Host" %} {% trans "User"%} |
{% trans "Status" %} | {% trans "VCPU" %} | {% trans "Memory" %} | {% trans "Actions" %} |
---|---|---|---|---|---|
{{ inst }} {{ info.title }} |
{{ host.1 }} {% if info.userinstances.count > 0 %}{{ info.userinstances.first_user.user.username }}{% if info.userinstances.count > 1 %} (+{{ info.userinstances.count|add:"-1" }}){% endif %}{% endif %} |
{% if vm.status == 1 %}{% trans "Active" %}{% endif %} {% if vm.status == 5 %}{% trans "Off" %}{% endif %} {% if vm.status == 3 %}{% trans "Suspend" %}{% endif %} | {{ vm.vcpu }} | {{ vm.memory|filesizeformat }} | {% include "instance_actions.html" %} |