{% extends "base.html" %} {% load datetime_formatting %} {% load truncatepath %} {% load static_url %} {% block title %}| Tasks{% 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 task in data.results %} {% include "partials/task_index_row.html" with task=task %} {% endfor %}
Report Status Results Date {% include "partials/sort_by_date.html" with arg="created" %} {% include "partials/sort_by_duration.html" %} Action Task name Task path Playbook name (or path) Tags
{% else %}
{% if not request.GET %}

No recorded tasks 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 %}