{% extends "base.html" %} {% block title %}In Progress Jobs - Control Plane{% endblock %} {% block content %}
{% if in_progress_jobs|length > 0 %} {% for job in in_progress_jobs %} {% endfor %} {% else %} {% endif %}
Job Queue Worker Runtime Actions
id: {{ job.id }}
Started {{ job.started_at }}
{{ job.queue_name }}
{{ job.worker_id }}
{{ job.runtime }}
No in-progress 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 %}