blob: 8412c46c3b386e1775c27a021d8ff9098d47964c (
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
|
{%extends "samples/sui-base.html"%}
{%from "cli-output.html" import cli_output%}
{%block extrameta%}
<meta http-equiv="refresh" content="5">
{%endblock%}
{%block title%}Job Status{%endblock%}
{%block contents%}
<div class="row" style="overflow-x: clip;">
<h2 class="heading">{{job.job_name[0:50]}}…</h2>
<p>
<strong>status</strong>:
<span>{{job["status"]}} ({{job.get("message", "-")}})</span><br />
</p>
<p>saving to database...</p>
</div>
<div class="row">
{{cli_output(job, "stdout")}}
</div>
{%endblock%}
|