{% extends "base.html" %}
{% block body %}
{% include "partials/playbook_card.html" %}
{% load datetime_formatting %}
Arguments and configuration
Argument |
Value |
{% for arg, value in playbook.arguments.items %}
{{ arg }} |
{{ value }} |
{% endfor %}
Records
{% if playbook.items.records %}
{% else %}
No records have been saved with ara_record for this playbook.
{% endif %}
Files
Hosts
Host |
Changed |
Failed |
Ok |
Skipped |
Unreachable |
{% for host in playbook.hosts %}
{{ host.name }} |
{{ host.changed }} |
{{ host.failed }} |
{{ host.ok }} |
{{ host.skipped }} |
{{ host.unreachable }} |
{% endfor %}
Task results
Task |
Action |
Status |
Host |
Started |
Duration |
{% for play in playbook.plays %}
{% for task in play.tasks %}
{% for result in task.results %}
{{ task.name }} |
{{ task.action }} |
{{ result.status }} |
{{ result.host.name }} |
{{ result.started | format_date }} |
{{ result.duration | format_duration }} |
{% endfor %}
{% endfor %}
{% endfor %}
{% endblock %}