{% 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 extra_controls %}{{ block.super }}{% endblock extra_controls %} {% block content %}
| {% 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 }} |
{{ object.inputs|pprint }}
{% trans "No steps available for this workflow." %}
{% endfor %}