{% extends "base.html" %} {% load datetime_formatting %} {% load truncatepath %} {% load static_url %} {% block body %} {% if not static_generation %}
{% endif %}
{% if not static_generation %} {% include "partials/pagination.html" %} {% endif %}
{% for playbook in data.results %} {% endfor %}
Status Report {% include "partials/sort_by_date.html" %} {% include "partials/sort_by_duration.html" %} Hosts Tasks Results Ansible Controller Name (or path) CLI Labels
{% include "partials/playbook_status_icon.html" with status=playbook.status %} {% url 'ui:playbook' playbook.id as playbook_url %} {{ playbook.started | format_date }} {{ playbook.duration | format_duration }} {{ playbook.items.hosts }} {{ playbook.items.tasks }} {{ playbook.items.results }} {% if not static_generation %} {{ playbook.ansible_version }} {% else %} {{ playbook.ansible_version }} {% endif %} {% if not static_generation %} {{ playbook.controller }} {% else %} {{ playbook.controller }} {% endif %} {% if not static_generation %} {% if playbook.name is not None %} {{ playbook.name }} {% else %} {{ playbook.path | truncatepath:50 }} {% endif %} {% else %} {% if playbook.name is not None %} {{ playbook.name }} {% else %} {{ playbook.path | truncatepath:50 }} {% endif %} {% endif %} {% for label in playbook.labels %} {% if not static_generation %} {{ label.name }} {% else %} {{ label.name }} {% endif %} {% endfor %}
{% endblock %}