{% extends load_base %} {% load i18n %} {% load gui_utils %} {% block javascript %} {% endblock %} {% block base_content %} {% include "gui/vm/stop_or_reboot_modal.html" %}
{% 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 dc1_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" %} |