{% extends "base.html" %} {% load datetime_formatting %} {% load truncatepath %} {% load static_url %} {% block title %}| Host reports{% if not static_generation %}: {{ current_page_results }} of {{ data.count }}{% endif %}{% endblock %} {% block body %} {% if not static_generation %}
{% endif %}
{% if data.results %} {% if not static_generation %} {% include "partials/pagination.html" %} {% endif %}
{% for host in data.results %} {# /latesthosts/ returns the host under a nested host attribute -- /hosts/ returns it directly #} {% if host.host %} {% include "partials/host_index_row.html" with host=host.host %} {% else %} {% include "partials/host_index_row.html" with host=host %} {% endif %} {% endfor %}
Playbook Report Last update {% include "partials/sort_by_date.html" with arg="updated" %} Playbook duration Host name {% include "partials/sort_by_name.html" %} Last results Host facts
{% else %}
{% if not request.GET %}

No recorded results found.

Record a playbook with the ara callback plugin enabled and try again.

{% else %}

No results found matching your query: try clearing search filters.

{% endif %}
{% endif %}
{% endblock %}