{% from "partials/components.html" import collapse %} {% from "partials/icons.html" import layers, search %}
{% call collapse("Services by Host", id="services-by-host-collapse", checked=expanded|default(true), icon=layers()) %}
{% for host_name, host_services in services_by_host.items() | sort %}

{{ host_name }}{% if host_name in hosts %}{{ hosts[host_name].address }}{% endif %}

{% else %}

No services currently running.

{% endfor %} {% endcall %}