blob: 56dd195b8377581a8ea7bf46c6bd55ee97481a2e (
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
|
{%extends "base.html"%}
{%block title%}Data Insertion Failure{%endblock%}
{%block contents%}
<h1 class="heading">Insertion Failure</h1>
<p>
There was an error inserting data into the database
</p>
<p>
Please notify the developers of this issue when you encounter it,
providing the information below.
</p>
<h4>Debugging Information</h4>
<ul>
<li><strong>job id</strong>: {{job["job_id"]}}</li>
</ul>
<h4>STDERR Output</h4>
<div class="cli-output">
{{job["stderr"]}}
</div>
{%endblock%}
|