{% extends "admin/base.html" %} {% block title %}Task Center — {{ site_header }}{% endblock %} {% block content %}
Background jobs, scheduled tasks, and execution history
| Task | Status | Queue | Duration | Retries | Started | Actions |
|---|---|---|---|---|---|---|
|
|
||||||
| No task executions found | ||||||
Scheduler Status
Periodic tasks are registered via @periodic_task decorator.
Run core scheduler to start the scheduler process.
No periodic tasks registered
Use @periodic_task(cron="0 * * * *") or
@periodic_task(interval=60)
| Task Name | Type | Queue | Retry | Timeout |
|---|---|---|---|---|
| No tasks registered in this process | ||||
Registered = task decorators loaded in this process.
Configure tasks_module in settings to auto-discover tasks.