{% extends "base.html" %} {% load datetime_formatting %} {% load truncatepath %} {% block body %} {% if not static_generation %}
{% for value, text in search_form.status.field.choices %} {% if value != "unknown" %} {% endif %} {% endfor %}
{% if search_query %} {% endif %}
{% include "partials/pagination.html" %} {% endif %}
{% for playbook in data.results %} {% endfor %}
Status {% include "partials/sort_by_date.html" %} {% include "partials/sort_by_duration.html" %} Ansible version Controller Name (or path) Labels Hosts Plays Tasks Results Files Records
{% if playbook.status == "completed" %}
{% elif playbook.status == "failed" %}
{% elif playbook.status == "running" %}
{% else %}
{% endif %} {% include "partials/playbook_status_icon.html" with status=playbook.status %}
{{ playbook.started | format_date }} {{ playbook.duration | format_duration }} {{ playbook.ansible_version }} {{ playbook.controller }} {% if static_generation %} {% else %} {% if playbook.status == "failed" %} {% else %} {% endif %} {% endif %} {% if playbook.name is not None %}{{ playbook.name }}{% else %}{{ playbook.path | truncatepath:50 }}{% endif %}
{% for label in playbook.labels %} {% if not static_generation %} {{ label.name }} {% else %} {{ label.name }} {% endif %} {% endfor %}
{{ playbook.items.hosts }} {{ playbook.items.plays }} {{ playbook.items.tasks }} {{ playbook.items.results }} {{ playbook.items.files }} {{ playbook.items.records }}
CLI arguments {% for arg, value in playbook.arguments.items %} {% endfor %}
Argument Value
{{ arg }} {{ value }}
{% if not static_generation %} {% include "partials/pagination.html" %} {% endif %} {% endblock %}