{% extends "base.html" %} {% block content %}

Queue Monitor

Live

Queued: {{ queue_stats.queued }} | Running: {{ queue_stats.running }} | Total: {{ queue_stats.total }}

All Jobs

{% if jobs %} {% for row in jobs %} {% endfor %} {% else %} {% endif %}
Sample Mode Status Queued At Duration Open
{{ row.sample_name }} {{ row.preset_label }} {{ row.status }}{% if row.status == 'queued' and row.queue_position %} (#{{ row.queue_position }}){% endif %} {{ row.created_at_text }} {% if row.duration is not none %}{{ row.duration }}s{% else %}-{% endif %} Open
No jobs yet.
{% endblock %}