aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/insert_error.html
diff options
context:
space:
mode:
Diffstat (limited to 'qc_app/templates/insert_error.html')
-rw-r--r--qc_app/templates/insert_error.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/qc_app/templates/insert_error.html b/qc_app/templates/insert_error.html
new file mode 100644
index 0000000..56dd195
--- /dev/null
+++ b/qc_app/templates/insert_error.html
@@ -0,0 +1,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%}