Initial import: Music_Server, MusicFree, catalog-sync

This commit is contained in:
2026-05-23 16:51:14 +08:00
commit 069af30dba
847 changed files with 179878 additions and 0 deletions
@@ -0,0 +1,30 @@
{% 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 %}