{% extends "base.html" %} {% from "macros.html" import status_badge %} {% block title %}Jobs · LLM Admin{% endblock %} {% block content %}

Jobs

{{ total }} job(s)
{% if jobs %} {% for j in jobs %} {% endfor %}
IDKindStatusProgress Current stepCreatedFinished
#{{ j.id }} {{ j.kind }} {{ status_badge(j.status) }} {% if j.progress_total %} {{ j.progress_current }}/{{ j.progress_total }}
{% else %}—{% endif %}
{{ j.current_step or '—' }} {{ j.created_at }} {{ j.finished_at or '—' }}
{% if has_prev %}← Prev{% endif %} Page {{ page }} {% if has_next %}Next →{% endif %}
{% else %}

No jobs match these filters.

{% endif %} {% endblock %}