{% extends load_base %} {% load i18n %} {% load gui_utils %} {% block javascript %} {% endblock %} {% block base_content %} {% include "gui/vm/stop_or_reboot_modal.html" %}
{% csrf_token %}
{% trans "Hidden servers" %}

{% 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." %}

{{ request.dc.alias }} {% trans "Servers" %}
{% if vms %} {% if vms_tags %} {% endif %} {% endif %} {% for vm in vms %}{% with vm_locked=vm.locked|lower %} {% with resources=vm.get_cpu_ram_disk %} {% endwith %} {% endwith %}{% empty %} {% endfor %}
{% 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 %} {{ resources.0 }} x {{ resources.1 }} MB {{ resources.2|mb_to_gb }} GB {% 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" %}
{% endblock %}