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.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/qc_app/templates/insert_error.html b/qc_app/templates/insert_error.html
deleted file mode 100644
index 5301288..0000000
--- a/qc_app/templates/insert_error.html
+++ /dev/null
@@ -1,32 +0,0 @@
-{%extends "base.html"%}
-
-{%block title%}Data Insertion Failure{%endblock%}
-
-{%block contents%}
-<h1 class="heading">Insertion Failure</h1>
-
-<div class="row">
- <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["jobid"]}}</li>
- </ul>
-</div>
-
-<div class="row">
- <h4>STDERR Output</h4>
- <pre class="cli-output">
- {{job["stderr"]}}
- </pre>
-</div>
-
-{%endblock%}