{% extends "base.html" %}{% block content %} {% if css %}{% endif %}
{{ job_data.status or 'unknown' }} {% if job_data.origin %} {{ job_data.origin }} {% endif %}

{{ job_data.name }}

{{ job_data.id }}

Back {% if access == "admin" and job_data.status == "failed" %} {% endif %} {% if access == "admin" %} {% endif %}
Created
{{ job_data.created_at }}
Enqueued
{{ job_data.enqueued_at or "—" }}
{{ "Failed" if job_data.status == "failed" else "Ended" }}
{{ job_data.ended_at or "—" }}
{% if job_data.exc_info %}

Exception

{% if col_exc_info %} {{ col_exc_info|safe }} {% else %}
{{ job_data.exc_info }}
{% endif %}
{% endif %} {% if result_display is not none %}

Result

{{ result_display }}
{% endif %} {% if job_data.meta and (hide_meta is not defined or not hide_meta) %}

Metadata

{{ job_data.meta }}
{% endif %}
{% endblock %}