{% extends "admin/base.html" %}
{% block title %}{{ page_title('Celery Stats') }}{% endblock %}
{% block content %}
Celery Stats
The time is {{ now|babel_datetime }}.
Pending Tasks
Task Name |
Count |
{% for task, count in pending|dictsort %}
{% if count|int %}
{{ task }} |
{{ count }} |
{% endif %}
{% endfor %}
Failed Tasks
Task Name |
Count |
{% for task, count in failures|dictsort %}
{{ task }} |
{{ count }} |
{% endfor %}
Total Tasks Run
Task Name |
Count |
{% for task, count in totals|dictsort %}
{{ task }} |
{{ count }} |
{% endfor %}
{% endblock %}