blob: 828ab1cc3b595a8275cd30e41ca56f0f3137fa94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{%extends "base.html"%}
{%block title%}Debug Job{% endblock%}
{%block css%}
{%endblock%}
{%block content%}
<h1>Debug Job</h1>
The following show details for job "{{job_id}}" to assist in debugging.
<h2>Metadata</h2>
<ul>
<li><strong>Job ID:</strong> {{job_id}}</li>
<li><strong>Command:</strong> <code>{{command}}</code></li>
<li><strong>Received:</strong> {{request_received_time}}</li>
<li><strong>Return Code:</strong> {{return_code}}</li>
<li><strong>Completion Status:</strong> {{completion_status}}</li>
<li><strong>Status:</strong> {{status}}</li>
</ul>
<h2>STDERR</h2>
<div style="background-color: black; color: red;">
{%for line in stderr:%}
<p>{{line}}</p>
{%endfor%}
</div>
<h2>STDOUT</h2>
<div style="background-color: black; color: green;">
{%for line in stdout:%}
<p>{{line}}</p>
{%endfor%}
</div>
{%endblock%}
{%block js%}
{%endblock%}
|