{% extends "base.html" %} {% block title %}Blocked Jobs - Control Plane{% endblock %} {% block content %}
{% set filter_args = "" %} {% if filter_class_name %}{% set encoded_cn = filter_class_name | urlencode %}{% set filter_args = filter_args ~ "class_name=" ~ encoded_cn %}{% endif %} {% if filter_queue_name %}{% if filter_args %}{% set filter_args = filter_args ~ "&" %}{% endif %}{% set encoded_qn = filter_queue_name | urlencode %}{% set filter_args = filter_args ~ "queue_name=" ~ encoded_qn %}{% endif %} {% set filter_qs = "" %} {% if filter_args %}{% set filter_qs = "?" ~ filter_args %}{% endif %}
{% if blocked_jobs|length > 0 %} {% for job in blocked_jobs %} {% endfor %} {% else %} {% endif %}
Job Queue Priority Blocked By Waiting Since Actions
id: {{ job.job_id }}
Enqueued {{ job.created_at }}
{{ job.queue_name }}
{{ job.priority }}
{{ job.concurrency_key }}
{{ job.waiting_time }}
No blocked jobs found
{{ current_page_num }} / {{ total_pages }}
{% if current_page_num > 1 %} Previous page {% else %} {% endif %} {% if current_page_num < total_pages %} Next page {% else %} {% endif %}
{% endblock %}