1 {% extends "jobs.html" %}
3 {% block breadcrumbs %}
9 Job {{ job.id }} details
14 <h3>Job {{ job.id }}</h3>
15 <tt>{{ job.command }}</tt><br>
16 {% if job.finish_time %}
17 Status: <b>Completed</b> at {{ job.finish_time|date:"Y-m-d H:i:s" }} UTC in {{ job.process_time }}<br>
20 <b>Error {{ job.result }}</b><br>
23 Result size: {{ job.get_sucess_size|filesizeformat }}<br>
25 Log size: {{ job.get_log_size|filesizeformat }}<br>
28 <a href="/job/{{ job.id }}/download" class=button>download</a>
30 {% if job.get_log_size %}<a href="/job/{{ job.id }}/log" class=button>log</a>{% endif %}
33 {% if job.start_time %}
34 Status: <b>Running</b> since {{ job.start_time|date:"Y-m-d H:i:s" }} UTC ( {{ job.running_time}} ) <br>
35 {% with job.get_stats as stats %}
37 Process ID: {{ stats.pid }}<br>
38 CPU ID: {{ stats.processor }}<br>
39 Nice: {{ stats.nice }}<br>
40 State: {{ stats.nice_state }}<br>
41 Virtual size: {{ stats.vsize|filesizeformat }}<br>
42 Time scheduled in user mode: {{ stats.nice_utime }} s<br>
43 Time scheduled in system mode: {{ stats.nice_stime }} s<br>
45 <b>Internal error</b>: process {{ job.pid }} stats are not available.<br>
46 Either the job just terminated, or the job runner daemon may have a problem....
50 Status: <b>Queued</b> since {{ job.queue_time }}.<br>
51 Position in jobs queue: {{ job.queue_rank }} / {{ queue_size }}<br>