1 {% extends "base.html" %}
3 {% block tab_active_job %} id=tabactive{% endblock %}
5 {% block breadcrumbs %}
7 / <a href="/job/">job</a>
17 <li>Job {{ job.id }}<br>
18 <tt>{{ job.command }}</tt><br>
19 {% if job.finish_time %}
20 Status: <b>Completed</b> at {{ job.finish_time|date:"Y-m-d H:i:s" }} UTC in {{ job.process_time }}<br>
21 Result: {% if job.result %}<b>Error {{ job.result }}</b>{% else %}<b>Success</b><br>
22 <a href="/job/{{ job.id }}/download" class=button>download</a>{% endif %}<br>
24 {% if job.start_time %}
25 Status:<b>Running</b> since {{ job.start_time }}.<br>
26 Pid: {{ job.pid }}<br>
28 Status: <b>Queued</b> since {{ job.queue_time }}.<br>
29 Position in jobs queue: {{ job.queue_rank }}<br>
36 <a href="." class=button>Hide archived jobs</a>
38 <a href="?archive" class=button>Show archived jobs</a>