1 {% extends "base.html" %}
3 {% block tab_active_job %} id=tabactive{% endblock %}
5 {% block breadcrumbs %}
12 <h3>Job {{ job.id }}</h3>
13 <tt>{{ job.nice_command }}</tt><br>
14 {% if job.finish_time %}
15 Status: <b>Completed</b> at {{ job.finish_time|date:"Y-m-d H:i:s" }} UTC in {{ job.process_time }}<br>
16 Result: {% if job.result %}<b>Error {{ job.result }}</b>{% else %}<b>Success</b><br>
17 <a href="/job/{{ job.id }}/download" class=button>download</a>{% endif %}<br>
19 {% if job.start_time %}
20 Status: <b>Running</b> since {{ job.start_time }}.<br>
21 Pid: {{ job.pid }}<br>
23 Status: <b>Queued</b> since {{ job.queue_time }}.<br>
24 Position in jobs queue: {{ job.queue_rank }}<br>