{% load i18n sizeformat parse_date tionix_tags%}

{% trans "Overview" %}


{% trans "Hostname" %}
{{ host.name|default_if_none:'' }}
{% trans "Host title" context "Infrastructure" %}
{{ host.title|default_if_none:'' }}
{% trans "Condition" %}
{{ host.condition_label|capfirst }}
{% trans "Description" %}
{{ host.description|default_if_none:'' }}
{% trans "Owner" %}
{{ host.owner|default_if_none:'' }}
{% trans "Created" %}
{% if host.created_at %}
{{ host.created_at|parse_date }}
{% else %}
{% trans "Unknown" %}
{% endif %}
{% trans "Virtual controller" %}
{% if host.controller_id %} {{ host.controller_id }} {% else %}-{% endif %}
{% trans "SNMP" %}
{{ host.snmp_enabled|enabled }}
{% trans "Log redirection" %}
{{ host.log_redirection_enabled|enabled }}
{% trans "Log redirection hostname" %}
{{ host.log_redirection_hostname|default_if_none:"-" }}
{% trans "CPU emulation mode" %}
{{ host.cpu_emulation_mode|default_if_none:"-"|capfirst }}
{% if host.cpu_emulation_mode == cpu_model_mode %}
{% trans "CPU model" %}
{{ host.cpu_model|default_if_none:"-" }}
{% endif %}
{% trans "DCC" %}
{{ host.dcc_enabled|enabled }}

{% trans "Physical information" %}


{% trans "Total RAM (MB)" %}
{{ host.ram_mb|default_if_none:'' }}
{% trans "Total vCPU" %}
{{ host.cpu_amount|default_if_none:'' }}
{% trans "HDD (GB)" %}
{{ host.hdd_gb|default_if_none:'' }}

{% trans "Location information" %}


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

{% trans "Class and type" %}


{% trans "Host Class" %}
{{ host.node_class.name|default_if_none:_('No') }}
{% trans "Host Type" %}
{{ host.node_type.name|default_if_none:_('No') }}

{% trans "IP-addresses" %}


{% trans "Host IP" %}
    {% for ip_addr in host.addresses %}
  • {{ ip_addr }}
  • {% endfor %}