{% 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 Copy {{ job.traceback }} {% endif %} {% endif %} {% if allow_write %} {% if job.status.value == "failed" %} Retry {% endif %} Delete {% endif %} {% endblock %}
{{ job.function_name }}
{{ job.job_id }}
{{ job.args | list | tojson(indent=2) }}
{{ job.kwargs | tojson(indent=2) }}
{{ job.error }}
{{ job.traceback }}