Scheduler
{% if scheduler_running %}Running{% else %}Stopped{% endif %}
State: {{ scheduler_state|default("unknown") }} ยท {{ timezone }}
{% extends "layout.html" %} {% block content %}
| Task | Trigger | Next Run | Last Run | Store / Executor | Status |
|---|---|---|---|---|---|
|
No tasks yet.
|
|||||
|
{{ 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 }}
{{ t.last_run.status_label }}
{% else %}
Never
{% endif %}
|
{{ t.store or '-' }}
{{ t.executor or '-' }}
|
{% if t.state == "scheduled" %} Scheduled {% elif t.state == "pending" %} Pending {% else %} Paused {% endif %} |