{% load static_url %} {% load truncatepath %} {% load filetree %}
Hosts {% if playbook.items.hosts %} {{ playbook.items.hosts }} {% endif %}
{% if playbook.items.hosts %}
{% for host in hosts %} {% url 'ui:host' host.id as host_url %}
{{ host.name | truncatechars:50 }}
{% 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 %}
{% endfor %}
{% else %}

No recorded hosts found.

The playbook might have been interrupted or is in progress.

{% endif %}
Files {% if playbook.items.files %} {{ playbook.items.files }} {% endif %}
{% if playbook.items.files %}
    {% with tree=files|as_filetree %} {% include "partials/filetree_node.html" with nodes=tree %} {% endwith %}
{% else %}

No recorded files found.

The playbook might have been interrupted or is in progress.

{% endif %}
Records {% if playbook.items.records %} {{ playbook.items.records }} {% endif %}
{% if playbook.items.records %}
    {% for record in records %} {% url 'ui:record' record.id as record_url %}
  • {{ record.key }}
  • {% endfor %}
{% else %}

No saved records found.

Learn more about saving key/values with ara_record in the documentation.

{% endif %}
{% if playbook.items.files %} {% endif %}