Retries:
{{ job.meta.retries }}
Created:
{{ job.meta.created_at|relative_time_micros }}
Scheduled:
{{ job.meta.scheduled_at|relative_time_micros }}
Started:
{{ job.meta.started_at|relative_time_micros_opt }}
Unique:
{{ job.meta.unique }}
Resurrect:
{{ job.meta.resurrect }}
Throttle cost:
{% match job.meta.throttle_cost %}
{% when Some with (cost) %}{{ cost }}
{% when None %}—
{% endmatch %}
{% let arg_pills = job.job.args|simple_args %}
{% include "_arg_pills.html" %}
{% if job.job.args|show_args_json %}
{% endif %}
{% match job.meta.state %}
{% when Some with (state) %}
{% if state|show_job_progress %}
{% let progress_started_at = job.meta.started_at %}
{% include "_job_progress.html" %}
{% else %}
{% endif %}
{% when None %}
{% endmatch %}
{% match job.meta.error %}
{% when Some with (error) %}