{% extends "kegadmin/base.html" %} {% load kegweblib %} {% load crispy_forms_tags %} {% block title %}Kegbot Admin: E-Mail | {{ block.super }}{% endblock %} {% block pagetitle %}Kegbot Admin: E-Mail{% endblock %} {% block kegadmin-main %}

Background worker status.

{% if error %}

Connection Error

Could not retrieve worker status. Error was: {{ error }}

{% endif %} {% if status %} {% for worker_name, worker_status in status.iteritems %} {% endfor %}
Worker Name Status Tasks — Run Count
{{ worker_name }} {{ worker_status.status }} {% for task_name, task_count in worker_status.stats.total.iteritems %} {{ task_name }} — {{ task_count }}
{% endfor %}
{% endif %} Show Raw Stats »

{{ raw_stats }}
{% endblock %}