blob: b3015fcb7262f56cc4223b9590986fef48d6c1a2 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{%extends "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%}
|