{% extends "base.html" %} {% load pygments_highlights %} {% load datetime_formatting %} {% load diff_result %} {% load static_url %} {% block body %}
{% include "partials/playbook_card.html" with playbook=result.playbook %}

Task result details

  • Play: {{ result.play.name }}
  • Task: {{ result.task.name }}
  • Action: {{ result.task.action }}
  • {% url 'ui:file' result.task.file as file_url %}
  • Path: {{ result.task.path }}:{{ result.task.lineno }}
  • {% url 'ui:host' result.host.id as host_url %}
  • Host: {{ result.host.name }}
  • Status: {{ result.status }}
  • Started: {{ result.started | format_date }}
  • Ended: {{ result.ended | format_date }}
  • Duration: {{ result.duration | format_duration }}
{% for field, value in result.content.items %} {% endfor %}
Field Value
{{ field }} {% if field == "diff" %} {{ value | diff_result | format_data | safe }} {% elif field == "results" %} {% include "partials/nested_results.html" with results=value %} {% else %} {{ value | format_data | safe }} {% endif %}

{% endblock %}