{% load i18n sizeformat tionix_tags%}

{% trans "Overview" %}


{% trans "Hostname" %}
{{ hypervisor.hypervisor_hostname }}
{% trans "Host title" %}
{{ hypervisor.title|default_if_none:'' }}
{% trans "Type" %}
{{ hypervisor.hypervisor_type }}
{% trans "Image" %}
{% if hypervisor.image_name == 'default' %}{% trans 'Default' %}{% else %}{{ hypervisor.image_name|default_if_none:'' }}{% endif %}
{% trans "State" %}
{{ hypervisor.state_label }}
{% trans "Power state" %}
{{ hypervisor.power_state_label }}
{% trans "Reserved" %}
{{ hypervisor.is_reserved|yesno|capfirst }}
{% trans "Status" %}
{{ hypervisor.status_label|capfirst }}
{% trans "Condition" %}
{{ hypervisor.condition_label|capfirst }}
{% trans "Virtual controller" %}
{% if hypervisor.controller_id %} {{ hypervisor.controller_id }} {% else %}-{% endif %}
{% trans "SSH" %}
{{ hypervisor.ssh_enabled|enabled }}
{% trans "TNXSafe" %}
{{ hypervisor.tnxsafe_enabled|enabled }}

{% trans "Location information" %}


{% trans "Data-center number" %}
{{ hypervisor.dtc_number|default_if_none:"-" }}
{% trans "Row number" %}
{{ hypervisor.row_number|default_if_none:"-" }}
{% trans "Rack number" %}
{{ hypervisor.rack_number|default_if_none:"-" }}
{% trans "Place in rack" %}
{{ hypervisor.unit_number|default_if_none:"-" }}
{% trans "Inventory number" %}
{{ hypervisor.inventory_code|default_if_none:"-" }}

{% trans "Physical information" %}


{% trans "Host IP" %}
{{ hypervisor.host_ip }}
{% trans "Current workload" %}
{{ hypervisor.current_workload }}
{% trans "Free disk space (GB)" %}
{{ hypervisor.free_disk_gb }} {% trans "GB" %}
{% trans "Available disk space (GB)" %}
{{ hypervisor.disk_available_least }} {% trans "GB" %}
{% trans "Hypervisor version" %}
{{ hypervisor.hypervisor_version }}
{% trans "Total RAM (MB)" %}
{{ hypervisor.memory_mb }} {% trans "MB" %}
{% trans "Free RAM (MB)" %}
{{ hypervisor.free_ram_mb }} {% trans "MB" %}
{% trans "Used RAM (MB)" %}
{{ hypervisor.memory_mb_used }} {% trans "MB" %}
{% trans "Instances" context "Hypervisor" %}
{{ hypervisor.running_vms }} {% if vms_missing %} ({{ vms_missing }} {% blocktrans count counter=vms_missing trimmed context "Evacuated from hypervisor" %} evacuated {% plural %} evacuated {% endblocktrans %}) {% endif %}
{% trans "Total vCPU" %}
{{ hypervisor.vcpus }}
{% trans "Used vCPU" %}
{{ hypervisor.vcpus_used }}

{% trans "Power controls" %}


{{ table.render }}
{% include "hypervisors/_set_default_power_control.html" %}