{% extends "base.html" %} {% block navbar %} {% module Template("navbar.html", active_tab="tasks") %} {% end %} {% block container %}
{% for uuid, task in tasks %} {% if getattr(task, 'name', None) is None %} {% continue %} {% end %} {% end %}
Name UUID State args kwargs Result Received Started Runtime Worker Exchange Routing Key Retries Revoked Exception Expires ETA
{{ task.name }} {{ task.uuid }} {{ task.state }} {{ task.args }} {{ task.kwargs }} {% if task.state == "SUCCESS" %} {{ task.result }} {% elif task.state == "FAILURE" %} {{ task.exception }} {% end %} {{ humanize(task.received, type='time') }} {{ humanize(task.started, type='time') }} {% if task.timestamp and task.started %} {{ '%.2f' % humanize(task.timestamp - task.started) }} sec {% end %} {{ task.worker }} {{ task.exchange }} {{ task.routing_key }} {{ task.retries }} {{ humanize(task.revoked, type='time') }} {{ task.exception }} {{ task.expires }} {{ task.eta }}
{% end %}