{% extends "base.html" %} {% block body %} {% include "partials/playbook_card.html" %} {% load datetime_formatting %}
Arguments and configuration {% for arg, value in playbook.arguments.items %} {% endfor %}
Argument Value
{{ arg }} {{ value }}
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 %}
Task Action Status Host Started Duration
{{ task.name }} {{ task.action }} {{ result.status }} {{ result.host.name }} {{ result.started | format_date }} {{ result.duration | format_duration }}
{% endblock %}