{% extends "admin/base_site.html" %} {% load static %} {% block extrastyle %} {{ block.super }} {% endblock extrastyle %} {% block bodyclass %} {{ block.super }} app-dj_queue model-dashboard change-list {% endblock bodyclass %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% block content_title %}

dj_queuequeues › {{ queue_name }}

{% endblock content_title %} {% block content_subtitle %}{% endblock content_subtitle %} {% block content %}
Backend: {{ backend_alias }} Database: {{ queue_database_alias }} Workers: {{ queue_worker_count }} Latency: {% if queue_latency_seconds != None %}{{ queue_latency_seconds|floatformat:1 }}s{% else %}-{% endif %} Paused: {{ queue_paused|yesno:"yes,no" }}
{% include "admin/dj_queue/_queue_controls.html" with queue_name=queue_name backend_alias=backend_alias next_url=request.get_full_path paused=queue_paused show_clear=True pause_toggle_pause_class="queue-button-pause" pause_toggle_resume_class="queue-button-resume" clear_button_class="" controls_class="queue-toolbar-actions" %}
{% if raw_links %} {% endif %}
{% csrf_token %} {% if job_actions and jobs %}
0 of {{ jobs|length }} selected
{% endif %} {% if jobs %}
{% if job_actions %} {% endif %} {% include "admin/dj_queue/_sortable_header_cells.html" with headers=table_headers num_sorted_fields=queue_num_sorted_fields %} {% for job in jobs %} {% if job_actions %} {% endif %} {% if state == "claimed" %} {% elif state == "scheduled" %} {% elif state == "blocked" %} {% elif state == "failed" %} {% elif state == "finished" %} {% endif %} {% endfor %}
{{ job.id }} {{ job.task_path }} {{ job.priority }} {{ job.created_at|date:"Y-m-d H:i:s" }}{{ job.claimed_execution.process.name|default:"-" }} {{ job.claimed_execution.created_at|date:"Y-m-d H:i:s" }}{{ job.scheduled_execution.scheduled_at|date:"Y-m-d H:i:s" }}{{ job.blocked_execution.concurrency_key }} {{ job.blocked_execution.expires_at|date:"Y-m-d H:i:s" }}{{ job.failed_execution.exception_class }} {{ job.failed_execution.message }}{{ job.finished_at|date:"Y-m-d H:i:s" }} {{ job.return_value }}
{% else %}

No {{ state_label }} jobs in {{ queue_name }}.

{% endif %}
{% endblock content %}