{% extends "admin/base_site.html" %} {% block title %}Tasks Queue status{% endblock %} {% block content %}

Task Queue Status

No. of Pending Tasks

NO OF PENDING TASKS: {{ tasks.pending_task }}

Oldest Task

ID: {{ tasks.oldest_task.id }} OP: {{ tasks.oldest_task.op }} ORG: {{ tasks.oldest_task.org }} LIMIT_ID: {{ tasks.oldest_task.limit_id }} View Task

Newest Task

ID: {{ tasks.newest_task.id }} OP: {{ tasks.newest_task.op }} ORG: {{ tasks.newest_task.org }} LIMIT_ID: {{ tasks.newest_task.limit_id }} View Task

Last Completed Task

ID: {{ tasks.last_completed_task.id }} OP: {{ tasks.last_completed_task.op }} ORG: {{ tasks.last_completed_task.org }} LIMIT_ID: {{ tasks.last_completed_task.limit_id }} View Task

Failed Tasks

{% for task in tasks.failed_tasks %} {% endfor %}
CREATED: {{ task.created }} ID: {{ task.id }} OP: {{ task.op }} ORG: {{ task.org }} LIMIT_ID: {{ task.limit_id }} View Task
{% endblock %}