diff options
Diffstat (limited to 'qc_app/templates/insert_success.html')
-rw-r--r-- | qc_app/templates/insert_success.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/qc_app/templates/insert_success.html b/qc_app/templates/insert_success.html new file mode 100644 index 0000000..4406c66 --- /dev/null +++ b/qc_app/templates/insert_success.html @@ -0,0 +1,15 @@ +{%extends "base.html"%} +{%from "stdout_output.html" import stdout_output%} + +{%block title%}Insertion Success{%endblock%} + +{%block contents%} +<h1 class="heading">Insertion Success</h1> + +<p>Data inserted successfully!</p> + +<p>The following queries were run:</p> + +{{stdout_output(job)}} + +{%endblock%} |