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.status == run.Status.SUCCESS and run.results_url %}
View pipeline results
{% endif %}
{% if run.execution_time %}
{% endif %}
{% if run.task_id %}
Task ID
{{ run.task_id }}
{% endif %}
Created date
{{ run.created_date }}
{% if run.task_start_date %}
Start date
{{ run.task_start_date }}
{% endif %}
{% if run.task_end_date %}
End date
{{ run.task_end_date }}
{% endif %}
{% if run.log %}
{% endif %}
{% if run.task_output %}
{% endif %}
{% if webhook_deliveries %}
{% for webhook_delivery in webhook_deliveries %}
Webhook delivery
{{ webhook_delivery.uuid }}
Target URL
{{ webhook_delivery.target_url|truncatechars:30 }}
Delivered
{{ webhook_delivery.delivered|yesno }}
{% if webhook_delivery.delivery_error %}
{{ webhook_delivery.delivery_error }}
{% endif %}
{% if webhook_delivery.delivered %}
HTTP code
{{ webhook_delivery.response_status_code }}
{% if webhook_delivery.response_text %}
{{ webhook_delivery.response_text }}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}