{% extends "base.html" %} {% block title %}QUADS Host Details{% endblock %} {% block page_content %}

QUADS Host Details

Basic Information

Name {{ host.name }}
Model {{ host.model }}
Host Type {{ host.host_type }}
Location {% if host.rack or host.uloc or host.blade %} Rack: {{ host.rack or 'N/A' }}
U-Location: {{ host.uloc or 'N/A' }}
Blade: {{ host.blade or 'N/A' }} {% else %} Not specified {% endif %}

Status Information

Current Cloud {% if host.cloud %} {{ host.cloud.name }} {% else %} None {% endif %}
Default Cloud {{ host.default_cloud.name if host.default_cloud else 'None' }}
Status Flags Build: {{ host.build }} Validated: {{ host.validated }} Broken: {{ host.broken }} Retired: {{ host.retired }}
Last Build {{ host.last_build|default('Never', true) }}
Self-Schedule {{ 'Enabled' if host.can_self_schedule else 'Disabled' }}
Boot Mode {{ host.bootmode }}

Processors

{% if host.processors %} {% for processor in host.processors %} {% endfor %}
Type Vendor Product Cores Threads
{{ processor.processor_type }} {{ processor.vendor }} {{ processor.product }} {{ processor.cores }} {{ processor.threads }}
{% else %}

No processor information available

{% endif %}

Memory

{% if host.memory %} {% for mem in host.memory %} {% endfor %}
Handle Size (GB)
{{ mem.handle }} {{ mem.size_gb }}
{% else %}

No memory information available

{% endif %}

Storage

{% if host.disks %} {% for disk in host.disks %} {% endfor %}
Type Size (GB) Count Total (GB)
{{ disk.disk_type }} {{ disk.size_gb }} {{ disk.count }} {{ disk.size_gb * disk.count }}
{% else %}

No storage information available

{% endif %}

Network Interfaces

{% if host.interfaces %} {% for interface in host.interfaces %} {% endfor %}
Name MAC Address Speed Status
{{ interface.name }} {% if interface.pxe_boot %} PXE {% endif %} {{ interface.mac_address }} {{ interface.speed }} {% if interface.maintenance %} Maintenance {% else %} Active {% endif %}
{% else %}

No network interface information available

{% endif %}
{% include 'modal_no_footer.html' %} {% endblock %}