{% extends "dashboard/table.html" %} {% load staticfiles %} {% block table %} Name Architecture Profile Booked Working {% for host in hosts %} {{ host.name }} {{ host.arch }} {{ host.flavor.name }} {% if host.allocation != null %} Yes {% else %} No {% endif %} {% if host.allocation.reason == "maintenance" %} No {% else %} Yes {% endif %} {% endfor %} {% endblock table %} {% block tablejs %} {% endblock tablejs %}