{% extends "base.html" %} {% import "_pagination.html" as pagination %} {% block title %}Queues - Control Plane{% endblock %} {% block content %}
{% for queue in queues %} {% endfor %}
Queue Name Jobs Count Status Actions
{{ queue.name }} {% if queue.concurrency_limit %} limit {{ queue.concurrency_limit }} {% endif %}
{{ queue.jobs_count }}
{{ queue.status | title }} {% if queue.status == 'active' %} {% else %} {% endif %}
{{ pagination::bar(base_path=base_path, path="queues", page=current_page_num, total_pages=total_pages) }}
{% endblock %}