{% extends "base.html" %} {% block content %}

{{ job.function_name }}

{{ job.status.value }}
Job ID
{{ job.job_id }}
Queue
{{ job.queue_name }}
Status
{{ job.status.value }}
{% if job.job_try %}
Attempt
{{ job.job_try }}
{% endif %}

Arguments

{{ job.args | list | tojson(indent=2) }}

Keyword Arguments

{{ job.kwargs | tojson(indent=2) }}

Timing

Enqueued
{{ job.enqueue_time.strftime('%Y-%m-%d %H:%M:%S') if job.enqueue_time else "N/A" }}
Started
{{ job.start_time.strftime('%Y-%m-%d %H:%M:%S') if job.start_time else "N/A" }}
Finished
{{ job.finish_time.strftime('%Y-%m-%d %H:%M:%S') if job.finish_time else "N/A" }}
Duration
{{ "%.1fms" | format(job.duration_ms) if job.duration_ms else "N/A" }}
{% if job.status.value == "failed" and job.error %}

Error

{{ job.error }}

{% if job.traceback %}
Full Traceback
{{ job.traceback }}
{% endif %}
{% endif %} {% if allow_write %}
{% if job.status.value == "failed" %} {% endif %}
{% endif %}
{% endblock %}