27 lines
857 B
HTML
27 lines
857 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Admin Jobs | left4me{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel">
|
|
<h1>Jobs</h1>
|
|
<table class="table">
|
|
<thead><tr><th>ID</th><th>Operation</th><th>State</th><th>User</th><th>Server</th><th>Created</th><th>Finished</th></tr></thead>
|
|
<tbody>
|
|
{% for job, user, server in rows %}
|
|
<tr>
|
|
<td>{{ job.id }}</td>
|
|
<td>{{ job.operation }}</td>
|
|
<td>{{ job.state }}</td>
|
|
<td>{{ user.username }}</td>
|
|
<td>{% if server %}<a href="/servers/{{ server.id }}">{{ server.name }}</a>{% else %}-{% endif %}</td>
|
|
<td>{{ job.created_at }}</td>
|
|
<td>{{ job.finished_at or "-" }}</td>
|
|
</tr>
|
|
{% else %}
|
|
<tr><td colspan="7" class="muted">No jobs found.</td></tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
{% endblock %}
|