{% extends "admin/dj_celery_panel/base.html" %} {% load i18n static dcr_icons %} {% block panel_page_content %}
{% trans "Real-time view of Celery workers currently processing tasks." %}
| {% trans "Worker Name" %} | {% trans "Status" %} | {% trans "Pool" %} | {% trans "Concurrency" %} | {% trans "Prefetch Count" %} | {% trans "Tasks Executed" %} | {% trans "PID" %} |
|---|---|---|---|---|---|---|
{{ worker.name }}
|
{% if worker.status == "online" %} {{ worker.status|capfirst }} {% else %} {{ worker.status|capfirst }} {% endif %} | {{ worker.pool }} | {{ worker.concurrency }} | {{ worker.prefetch_count }} | {{ worker.total_tasks_executed }} | {{ worker.pid }} |
{% trans "No Workers Running" %}{% trans "Start a Celery worker to process tasks." %} |
||||||