{% load static_url %}
{% if playbook.items.hosts %} {% for host in hosts %} {% endfor %}
Facts Hostname Results
{% url 'ui:host' host.id as host_url %} {{ host.name }} {% if host.ok %} {{ host.ok }} OK {% endif %} {% if host.changed %} {{ host.changed }} CHANGED {% endif %} {% if host.failed %} {{ host.failed }} FAILED {% endif %} {% if host.unreachable %} {{ host.unreachable }} UNREACHABLE {% endif %} {% if host.skipped %} {{ host.skipped }} SKIPPED {% endif %}
{% else %}

No recorded hosts found.

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

{% endif %}