{% extends "base.html" %} {% block title %}QUADS Host Details{% endblock %} {% block page_content %}
| 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 %} |
| 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 }} |
| Type | Vendor | Product | Cores | Threads |
|---|---|---|---|---|
| {{ processor.processor_type }} | {{ processor.vendor }} | {{ processor.product }} | {{ processor.cores }} | {{ processor.threads }} |
No processor information available
{% endif %}| Handle | Size (GB) |
|---|---|
| {{ mem.handle }} | {{ mem.size_gb }} |
No memory information available
{% endif %}| Type | Size (GB) | Count | Total (GB) |
|---|---|---|---|
| {{ disk.disk_type }} | {{ disk.size_gb }} | {{ disk.count }} | {{ disk.size_gb * disk.count }} |
No storage information available
{% endif %}| 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 %} |
No network interface information available
{% endif %}