{% load static_url %}
{% if playbook.items.hosts %} {% for host in hosts %} {% endfor %}
Report Status Hostname
{% url 'ui:host' host.id as host_url %} {% if host.ok %} {{ host.ok }} {% endif %} {% if host.changed %} {{ host.changed }} {% endif %} {% if host.failed or host.unreachable %} {{ host.failed |add:host.unreachable }} {% endif %} {% if host.skipped %} {{ host.skipped }} {% endif %} {{ host.name | truncatechars:75 }}
{% else %}

No recorded hosts found.

The playbook might might have been interrupted or is in progress.

{% endif %}