{% extends 'generic/object.html' %} {% load buttons %} {% load helpers %} {% load i18n %} {% load perms %} {% block control-buttons %} {% if not is_terminal %} {% endif %} {% if request.user|can_delete:object %} {% trans "Delete" %} {% endif %} {% endblock control-buttons %} {% block content %}

{% trans "Job" %}

{% if object.rq_job_id %} {% endif %} {% if object.error %} {% endif %}
{% trans "Workflow" %} {{ object.workflow|linkify }}
{% trans "Reporter" %} {% if object.created_by %} {% with u=object.created_by %} {% if u.first_name or u.last_name %} {{ u.get_full_name }} {% else %} {{ u.username }} {% endif %} {% endwith %} {% else %} {% endif %}
{% trans "Status" %} {% badge object.get_status_display %}
{% trans "Priority" %} {% badge object.get_priority_display %}
{% trans "Queued" %} {{ object.queued_at|placeholder }}
{% trans "Started" %} {{ object.started_at|placeholder }}
{% trans "Finished" %} {{ object.finished_at|placeholder }}
{% trans "RQ Job ID" %} {{ object.rq_job_id }}
{% trans "Error" %}
{{ object.error }}

{% trans "Inputs" %}

{{ object.inputs|pprint }}

Pipeline

{% for step in planned_steps %}
{{ forloop.counter }} {{ step.name }}
{% if not forloop.last %}
{% endif %} {% empty %}

{% trans "No steps available for this workflow." %}

{% endfor %}
{% endblock content %}