{% extends "layout.html" %} {% block content %}

Task{% if task.name %}: {{ task.name }}{% endif %}

{{ task.time_start |datefmt }} {{ task.time_end |datefmt }}

{{ playbook.hosts.count() }} Hosts

{% if task.file %}

{{ macros.make_link('file.show_file', task.file.path |pathtruncate(15), file_=task.file.id) }} File

{{ macros.make_link('file.show_file', task.lineno, file_=task.file.id, _anchor="line-" ~ task.lineno) }} File line

{% endif %}

{{ task.action }} Action

{{ task.duration |timefmt }} Duration

Task Results

{% for result in task_results %} {% set status = result.derived_status %} {% endfor %}
Start End Duration Host Status
{{ result.time_start |datefmt }} {{ result.time_end |datefmt }} {{ result.duration |timefmt }} {{ macros.make_link('host.show_host', result.host.name, id=result.host.id) }} {{ status |upper }} {{ macros.make_link('result.show_result', 'details', task_result=result.id) }}
{% endblock %}