31 lines
753 B
HTML
31 lines
753 B
HTML
{% extends "ops/base.html" %}
|
|
{% block content %}
|
|
<h1>Jobs Archive</h1>
|
|
<p class="muted">Use <a href="/dashboard">Dashboard</a> for the main task center. This page stays available for fallback browsing.</p>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Type</th>
|
|
<th>Status</th>
|
|
<th>Requested By</th>
|
|
<th>Created</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for job in jobs %}
|
|
<tr>
|
|
<td><a href="/jobs/{{ job.id }}">{{ job.id }}</a></td>
|
|
<td>{{ job.job_type }}</td>
|
|
<td>{{ job.status }}</td>
|
|
<td>{{ job.requested_by or "-" }}</td>
|
|
<td>{{ job.created_at or "-" }}</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr><td colspan="5">No jobs found.</td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|