{% extends "base.html" %} {% block title %}sendword — execution {{ id[:8] }}{% endblock %} {% block crumbs %}
HOOKS/ {{ hook_slug | upper }}/ {{ id[:8] | upper }}
{% endblock %} {% block actions %}
{% endblock %} {% block content %}

Execution {{ id[:8] }}

{{ status | upper }}
DETAILS
ID
{{ id }}
{% if exit_code is defined and exit_code is not none %}
EXIT CODE
{{ exit_code }}
{% endif %}
SOURCE
{{ trigger_source }}
TRIGGERED
{{ triggered_at }}
{% if started_at %}
STARTED
{{ started_at }}
{% endif %} {% if completed_at %}
COMPLETED
{{ completed_at }}
{% endif %} {% if duration %}
DURATION
{{ duration }}
{% endif %} {% if retry_count and retry_count > 0 %}
RETRY
#{{ retry_count }}{% if retry_of %} of {{ retry_of[:8] }}{% endif %}
{% endif %}
{% if status == 'running' %}
STDOUT

    
STDERR

    
{% else %}
STDOUT
{{ stdout }}
{% if stderr %}
STDERR
{{ stderr }}
{% endif %} {% endif %} {% endblock %}