diff options
author | Frederick Muriuki Muriithi | 2024-06-12 16:38:54 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-06-13 12:01:14 -0500 |
commit | f726c71bf1636a838f45363d1613763a2926e34f (patch) | |
tree | 8b5e0323106026abafa5cc0385a32df9df62f9e5 /qc_app/templates/insert_success.html | |
parent | 05402410638fc7dd678a6289ccd2a9ce11acc5e7 (diff) | |
download | gn-uploader-f726c71bf1636a838f45363d1613763a2926e34f.tar.gz |
Update html templates to use bootstrap for styling
Diffstat (limited to 'qc_app/templates/insert_success.html')
-rw-r--r-- | qc_app/templates/insert_success.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/qc_app/templates/insert_success.html b/qc_app/templates/insert_success.html index 4406c66..7e1fa8d 100644 --- a/qc_app/templates/insert_success.html +++ b/qc_app/templates/insert_success.html @@ -6,10 +6,14 @@ {%block contents%} <h1 class="heading">Insertion Success</h1> +<div class="row"> <p>Data inserted successfully!</p> <p>The following queries were run:</p> +</div> -{{stdout_output(job)}} +<div class="row"> + {{stdout_output(job)}} +</div> {%endblock%} |