{% extends "admin/base.html" %} {% block title %}{{ page_title('Celery Stats') }}{% endblock %} {% block content %}

Celery Stats

The time is {{ now|babel_datetime }}.

{{ csrf() }}

Pending Tasks

{% for task, count in pending|dictsort %} {% if count|int %} {% endif %} {% endfor %}
Task Name Count
{{ task }} {{ count }}

Failed Tasks

{% for task, count in failures|dictsort %} {% endfor %}
Task Name Count
{{ task }} {{ count }}

Total Tasks Run

{% for task, count in totals|dictsort %} {% endfor %}
Task Name Count
{{ task }} {{ count }}
{% endblock %}