{% extends "base.html" %} {% block title %}QUADS Available Hosts{% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block navbar %}
{% with available="active" %} {% include 'navbar.html' %} {% endwith %}
{% endblock %} {% block page_content %}

QUADS Available Hosts

{% for host in available_hosts.json %} {% if host["current"] %} {% else %} {% endif %} {% if host.disks %} {% else %} {% endif %} {% endfor %}
# Hostname Cloud Model Disks
{{ loop.index }} {{ host["name"] }} {{ host["cloud"] }} {{ host["model"] }}💾
{% include 'modal_no_footer.html' %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}