{% extends load_base %} {% load i18n %} {% load gui_utils %} {% block javascript %} {% endblock %} {% block base_content %}
{% trans "Some servers are not visible or accessible, because some compute nodes are not in online state. Servers are kept untouched. Full server control will be possible as soon as the compute nodes return to online state." %}
{% for name, id in vms_tags %}
{% endfor %}
|
|||||||||
---|---|---|---|---|---|---|---|---|---|
{% trans "Name" %} | {% trans "Hostname" %} | {% if can_edit %}{% trans "Node" %}{% endif %} | {% if can_edit %}{% trans "Owner" %}{% endif %} | {% trans "Status" %} | {% trans "VCPUs" %} | {% trans "RAM" %} | {% trans "HDD" %} | ||
{{ vm.alias }} {{ vm.hostname }} | {{ vm.hostname }} | {% if can_edit %} {{ vm.node.hostname }} {% endif %} | {% if can_edit %} {{ vm.owner|truncatechars:16 }} {% endif %} | {% with status_display=vm.status_display %} {% trans vm.state %} {% endwith %} | {% with resources=vm.get_cpu_ram_disk %}{{ resources.0 }} x | {{ resources.1 }} MB | {{ resources.2|mb_to_gb }} GB | {% endwith %}{% if vm.is_kvm %} {% trans "Console" %} {% if dc_settings.MON_ZABBIX_ENABLED %} {% trans "Monitoring" %} {% endif %}{% endif %} {% trans "Task Log" %} | |
{% trans "You don't have any server yet" %}. {% trans "Please" %} {% trans "create one" %}. |
|||||||||
{% include "gui/vm/list_control.html" %} |