{% extends "base.html" %} {% load datetime_formatting %} {% load truncatepath %} {% load static_url %} {% block title %}| Playbook reports{% if not static_generation %}: {{ current_page_results }} of {{ data.count }}{% endif %}{% endblock %} {% block body %} {% if not static_generation %}
Status | Report | Date {% include "partials/sort_by_date.html" with arg="started" %} | {% 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 %} |