{% extends "header.html" %} {% import 'macros.html' as links_panel %} {% import 'wtf-fork.html' as wtf %} {% import 'elements.html' as elm %} {% block title %} Hosts info: {{ group }} {% endblock %} {% block content %}

{{ group }}


{{ links_panel.group_links(group, tag) }}
{% if not readonly %} {% endif %} {% for host, params in hosts.items() | sort %} {% if not readonly %} {% endfor %}
Host CPU model / ht-cores / power Memory Disk SSD Location queue / switch / rack OS
{% endif %} {{ host }} {{ params.get("model", "No Data") }} / {{ params.get("ncpu", "No Data") }} / {{ params.get("power", "No Data") }} {{ params.get("memory", "No Data") }} GB {{ params.get("disk", "No Data") }} GB on {{ params.get("n_disks", "No Data") }} disks {{ params.get("ssd", "No Data") }} GB {{ params.get("queue", "No Data") }} / {{ params.get("switch", "No Data") }} / {{ params.get("rack", "No Data") }} {{ params.get("os", "No Data") }}
{% if not readonly %} {% endif %}
{{ elm.footer() }} {% endblock %}