blob: 1a839a6783e6c3876f4370a06c8fc93c331a5416 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{%extends "sui-base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%block title%}Background Jobs: Error{%endblock%}
{%block pagetitle%}Background Jobs: Error{%endblock%}
{%block contents%}
<h1>Background Jobs: Error</h1>
<p>Job <strong>{{job["job_id"]}}</strong> failed!</p>
<p>The error details are in the "STDERR" section below.</p>
<h2>STDERR</h2>
<pre>{{job["stderr"]}}</pre>
{%endblock%}
|