aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-08-05 10:10:56 +0300
committerFrederick Muriuki Muriithi2022-08-05 10:10:56 +0300
commit19c376c4b60592f4bba0e26952faa3a71b6f5641 (patch)
tree0916ef296a57bb450102093429422953d92c009e /qc_app/templates
parent3da6848381b6103fbb58eeab8d7051cba0bded58 (diff)
downloadgn-uploader-19c376c4b60592f4bba0e26952faa3a71b6f5641.tar.gz
Update job status. Display stdout and stderr outputs
* Display the status of the job, as it is running * Display STDERR output if an error occurs * Display STDOUT output as job is running and on successful completion of the job
Diffstat (limited to 'qc_app/templates')
-rw-r--r--qc_app/templates/insert_progress.html9
1 files changed, 4 insertions, 5 deletions
diff --git a/qc_app/templates/insert_progress.html b/qc_app/templates/insert_progress.html
index 1ac6212..52beaa4 100644
--- a/qc_app/templates/insert_progress.html
+++ b/qc_app/templates/insert_progress.html
@@ -1,4 +1,5 @@
{%extends "base.html"%}
+{%from "stdout_output.html" import stdout_output%}
{%block extrameta%}
<meta http-equiv="refresh" content="5">
@@ -7,18 +8,16 @@
{%block title%}Job Status{%endblock%}
{%block contents%}
-<h1 class="heading">{{job_name}}</h2>
+<h1 class="heading">{{job_name}}</h1>
<label for="job_status">status:</label>
<span>{{job_status}}: {{message}}</span><br />
-{{job}}
<label for="job_{{job_id}}">inserting: </label>
<progress id="job_{{job_id}}" value="{{(job['percent'] | float) / 100}}">{{job["percent"]}}</progress>
<span>{{"%.2f" | format(job['percent'] | float)}}%</span>
-<div>
- {{job.stderr}}
-</div>
+
+{{stdout_output(job)}}
{%endblock%}