{% extends "base.html" %} {% from "macros.html" import status_badge %} {% block title %}Jobs · LLM Admin{% endblock %} {% block content %}
| ID | Kind | Status | Progress | Current step | Created | Finished |
|---|---|---|---|---|---|---|
| #{{ 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 '—' }} |
No jobs match these filters.
{% endif %} {% endblock %}