{% extends "base.html" %} {% block body %} {% include "partials/playbook_card.html" %} {% load datetime_formatting %}
Records {% if playbook.items.records %} {% else %} No records have been saved with ara_record for this playbook. {% endif %}
Files
Hosts {% for host in playbook.hosts %} {% endfor %}
Host

 CHANGED

 FAILED

 OK

 SKIPPED

 UNREACHABLE

{{ host.name }} {{ host.changed }} {{ host.failed }} {{ host.ok }} {{ host.skipped }} {{ host.unreachable }}
Task results {% for play in playbook.plays %} {% for task in play.tasks %} {% for result in task.results %} {% endfor %} {% endfor %} {% endfor %}
Status Host Task Action Duration Date
{% include "partials/result_status_icon.html" with status=result.status %} {{ result.host.name }} {{ task.name }} {{ task.action }} {{ result.duration | format_duration }} {{ result.started | format_date }}
{% endblock %}