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

 CHANGED

 FAILED

 OK

 SKIPPED

 UNREACHABLE

{% if static_generation %} {{ host.name }} {% else %} {{ host.name }} {% endif %} {% if static_generation or host.changed == 0 %} {{ host.changed }} {% else %} {{ host.changed }} {% endif %} {% if static_generation or host.failed == 0 %} {{ host.failed }} {% else %} {{ host.failed }} {% endif %} {% if static_generation or host.ok == 0 %} {{ host.ok }} {% else %} {{ host.ok }} {% endif %} {% if static_generation or host.skipped == 0 %} {{ host.skipped }} {% else %} {{ host.skipped }} {% endif %} {% if static_generation or host.unreachable == 0 %} {{ host.unreachable }} {% else %} {{ host.unreachable }} {% endif %}
Task results {% if not static_generation %}
{% for value, text in search_form.status.field.choices %} {% if value != "unknown" %} {% endif %} {% endfor %}
{% if request.GET %} {% endif %}
{% include "partials/pagination.html" with data=results %} {% endif %} {% if results.count %} {% for result in results.results %} {% endfor %}
Status Host Task Action {% include "partials/sort_by_duration.html" %} {% include "partials/sort_by_date.html" %}
{% include "partials/result_status_icon.html" with status=result.status %} {{ result.host.name }} {{ result.task.name }} {{ result.task.action }} {{ result.duration | format_duration }} {{ result.started | format_date }}
{% else %} {% if request.GET %} No task results have been found for this query: clear filters {% else %} No task results have been recorded for this playbook yet. It may be in progress or has been interrupted. {% endif %} {% endif %}
{% endblock %}