{% extends "base.html" %} {% block title %}QUADS Available Hosts{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block page_content %}

QUADS Available Hosts

{% if show_gpu %} {% endif %} {% for host in available_hosts.json %} {% if host["current"] %} {% else %} {% endif %} {% if show_gpu %} {% if host.processors and host.processors|selectattr("processor_type", "equalto", "GPU")|list %} {% else %} {% endif %} {% endif %} {% if host.disks %} {% else %} {% endif %} {% endfor %}
# Hostname Cloud ModelGPUDisks
{{ loop.index }} {{ host["name"] }} {{ host["cloud"] }} {{ host["model"] }}🧠💾
{% include 'modal_no_footer.html' %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}