{% load i18n sizeformat %}

{% trans "Host Info" %}


{% trans "Host Name" %}
{{ host.hostname }}
{% trans "Personality" %}
{{ host.personality }}
{% if host.personality and host.additional_subfunctions %}
{% trans "Subfunctions" %}
{{ host.subfunctions|join:", " |title }}
{% endif %} {% if host.peers %}
{% trans "Replication Group" %}
{{ host.peers }}
{% endif %}
{% trans "Host UUID" %}
{{ host.uuid }}
{% trans "Host ID" %}
{{ host.id }}
{% trans "Management MAC" %}
{{ host.mgmt_mac }}
{% trans "Management IP" %}
{{ host.mgmt_ip }}
{% trans "Serial ID" %}
{{ host.serialid }}
{% trans "Location" %}
{{ host.location|default:_("Not Specified") }}
{% trans "AppArmor Module" %}
{{ host.apparmor }}
{% trans "Serial Line Carrier Detect" %}
{{ host.ttys_dcd }}
{% trans "Clock Synchronization" %}
{{ host.clock_synchronization }}
{% trans "Created TimeStamp" %}
{{ host.created_at|parse_isotime }}
{% trans "Updated TimeStamp" %}
{{ host.updated_at|parse_isotime }}
{% trans "Administrative State" %}
{{ host.administrative }}
{% trans "Operational State" %}
{{ host.operational }}
{% trans "Availability State" %}
{{ host.availability }}
{% if host.personality and host.is_cpe %}
{% trans "Subfunction Operational State" %}
{{ host.subfunction_oper }}
{% trans "Subfunction Availability State" %}
{{ host.subfunction_avail }}
{% endif %}
{% trans "Patch Current" %}
{{ host.patch_current }}
{% trans "Reboot Required" %}
{{ host.requires_reboot}}
{% trans "Patch Agent State" %}
{{ host.patch_state }}

{% trans "Installation Parameters" %}


{% trans "Boot Device" %}
{{ host.boot_device }}
{% trans "Rootfs Device" %}
{{ host.rootfs_device }}
{% trans "Installation Output" %}
{{ host.install_output }}
{% trans "Console" %}
{{ host.console }}

{% trans "Board Management" %}


{% if host.bm_type %}
{% trans "Board Management Controller IP Address" %}
{{ host.bm_ip }}
{% trans "Board Management Controller User Name" %}
{{ host.bm_username }}
{% endif %}