{% 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 }} Paused: {{ queue_paused|yesno:"yes,no" }}
{% csrf_token %}
{% csrf_token %}
{% if raw_links %} {% endif %}
{% csrf_token %} {% if job_actions and jobs %}
0 of {{ jobs|length }} selected
{% endif %} {% if jobs %}
{% if job_actions %} {% endif %} {% for header in table_headers %} {% endfor %} {% 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 %}
{% if header.sortable and header.sorted %}
{% if header.sort_priority %}{{ header.sort_priority }}{% endif %}
{% endif %}
{{ 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 %}