{% extends "layout.html" %} {% block content %}
Scheduler
{% if scheduler_running %} Running {% else %} Stopped {% endif %}
Timezone
{{ timezone }}
Total Tasks
{{ total_tasks }}
Scheduled
{{ scheduled_tasks }}
Paused
{{ paused_tasks }}
Pending
{{ pending_tasks }}
Stores / Executors
{{ store_count }} / {{ executor_count }}

Recent tasks

Manage
{% if not tasks or tasks|length == 0 %} {% else %} {% for t in tasks[:10] %} {% endfor %} {% endif %}
ID / Name Trigger Next run Store Status
No tasks yet. Create one.
{{ t.id }}
{{ t.name or '-' }}
{{ t.callable_reference or t.callable_name or '-' }}
{{ t.trigger_alias or t.trigger }} {{ t.next_run_time or '-' }} {{ t.store }} {% if t.state == "scheduled" %} Scheduled {% elif t.state == "pending" %} Pending {% else %} Paused {% endif %}
View Tasks
{% endblock %}