diff options
author | Frederick Muriuki Muriithi | 2022-08-31 04:44:28 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-08-31 04:44:28 +0300 |
commit | ae1fbc0c56c8732fb85b555eccd4fddb5d8e5437 (patch) | |
tree | 97d9e23c50c557e18c7ae0955aed68d5baa130ff /qc_app/templates/insert_error.html | |
parent | ddad176111e962e8b773d8dd7467e8536ba4e5b4 (diff) | |
download | gn-uploader-ae1fbc0c56c8732fb85b555eccd4fddb5d8e5437.tar.gz |
Commit missing files.
Diffstat (limited to 'qc_app/templates/insert_error.html')
-rw-r--r-- | qc_app/templates/insert_error.html | 28 |
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%} |