{{ run.pipeline_name }}

{{ run.description }}
Run {% include "scanpipe/includes/run_status_tag.html" with run=run only %}
{% if run.selected_groups %}
Selected groups {% for group in run.selected_groups %} {% if not forloop.first %},{% endif %} {{ group }} {% endfor %}
{% endif %} {% if run.status == run.Status.NOT_STARTED or run.status == run.Status.QUEUED %} Delete pipeline Select steps {% endif %} {% if run.task_exitcode %}
Exit code {{ run.task_exitcode }}
{% endif %} {% if run.execution_time %}
Execution time {{ run.execution_time_for_display }}
{% endif %} {% if run.status == run.Status.RUNNING %} Stop pipeline {% endif %}
{% if run.execution_time %}
ScanCode.io version {% with run.get_diff_url as diff_url %} {% if diff_url %} {{ run.scancodeio_version }} {% else %} {{ run.scancodeio_version }} {% endif %} {% endwith %}
{% endif %} {% if run.task_id %}
Task ID {{ run.task_id }}
{% endif %}
Created date {{ run.created_date|date:'N j, Y, P T' }}
{% if run.task_start_date %}
Start date {{ run.task_start_date|date:'N j, Y, P T' }}
{% endif %} {% if run.task_end_date %}
End date {{ run.task_end_date|date:'N j, Y, P T' }}
{% endif %}
{% if run.log %} Run log
{{ run.log }}
{% endif %} {% if run.task_output %} Task output
{{ run.task_output }}
{% endif %} {% if webhook_subscriptions %}
{% for webhook in webhook_subscriptions %}
Webhook {{ webhook.uuid }}
Target URL {{ webhook.target_url|truncatechars:30 }}
Delivered {{ webhook.delivered|yesno }}
{% if webhook.delivery_error %} Delivery error
{{ webhook.delivery_error }}
{% endif %} {% if webhook.delivered %}
HTTP code {{ webhook.response_status_code }}
{% if webhook.response_text %} Response
{{ webhook.response_text }}
{% endif %} {% endif %} {% endfor %} {% endif %}