| Task | Trigger | Next Run | Last Run | Store / Executor | Actions | |
|---|---|---|---|---|---|---|
|
No tasks match the current filters.
|
||||||
|
{{ t.id }}
{{ t.name or '-' }}
{{ t.callable_reference or t.callable_name or '-' }}
|
{{ t.trigger_alias or t.trigger }}
{{ t.trigger_description or '-' }}
|
{{ t.next_run_time or '-' }} |
{% if t.last_run %}
{{ t.last_run.finished_at or t.last_run.submitted_at }}
{% if t.last_run.status == "succeeded" %}
{{ t.last_run.status_label }}
{% elif t.last_run.status == "running" %}
{{ t.last_run.status_label }}
{% elif t.last_run.status == "missed" or t.last_run.status == "max_instances" %}
{{ t.last_run.status_label }}
{% else %}
{{ t.last_run.status_label }}
{% endif %}
{% else %}
Never
{% endif %}
|
{{ t.store or '-' }}
{{ t.executor or '-' }}
|
{% if t.state == "scheduled" %}
Scheduled
{% elif t.state == "pending" %}
Pending
{% else %}
Paused
{% endif %}
|
|