aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/insert_error.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-06-12 16:38:54 -0500
committerFrederick Muriuki Muriithi2024-06-13 12:01:14 -0500
commitf726c71bf1636a838f45363d1613763a2926e34f (patch)
tree8b5e0323106026abafa5cc0385a32df9df62f9e5 /qc_app/templates/insert_error.html
parent05402410638fc7dd678a6289ccd2a9ce11acc5e7 (diff)
downloadgn-uploader-f726c71bf1636a838f45363d1613763a2926e34f.tar.gz
Update html templates to use bootstrap for styling
Diffstat (limited to 'qc_app/templates/insert_error.html')
-rw-r--r--qc_app/templates/insert_error.html32
1 files changed, 18 insertions, 14 deletions
diff --git a/qc_app/templates/insert_error.html b/qc_app/templates/insert_error.html
index 56dd195..5301288 100644
--- a/qc_app/templates/insert_error.html
+++ b/qc_app/templates/insert_error.html
@@ -5,24 +5,28 @@
{%block contents%}
<h1 class="heading">Insertion Failure</h1>
-<p>
- There was an error inserting data into the database
-</p>
+<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>
+ <p>
+ Please notify the developers of this issue when you encounter it,
+ providing the information below.
+ </p>
-<h4>Debugging Information</h4>
+ <h4>Debugging Information</h4>
-<ul>
- <li><strong>job id</strong>: {{job["job_id"]}}</li>
-</ul>
+ <ul>
+ <li><strong>job id</strong>: {{job["jobid"]}}</li>
+ </ul>
+</div>
-<h4>STDERR Output</h4>
-<div class="cli-output">
- {{job["stderr"]}}
+<div class="row">
+ <h4>STDERR Output</h4>
+ <pre class="cli-output">
+ {{job["stderr"]}}
+ </pre>
</div>
{%endblock%}