From 754e8f214b940e05298cb360ed829f5c685d55a5 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 25 Jul 2024 11:07:33 -0500 Subject: Rename module: qc_app --> uploader --- uploader/templates/job_progress.html | 40 ++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 uploader/templates/job_progress.html (limited to 'uploader/templates/job_progress.html') diff --git a/uploader/templates/job_progress.html b/uploader/templates/job_progress.html new file mode 100644 index 0000000..1af0763 --- /dev/null +++ b/uploader/templates/job_progress.html @@ -0,0 +1,40 @@ +{%extends "base.html"%} +{%from "errors_display.html" import errors_display%} + +{%block extrameta%} + +{%endblock%} + +{%block title%}Job Status{%endblock%} + +{%block contents%} +

{{job_name}}

+ +
+
+ Status +
+ + {{job_status}}: {{message}}
+
+ +
+ + + {{progress}} + {{"%.2f" | format(progress)}}% +
+ + + + +
+
+ +
+ {{errors_display(errors, "No errors found so far", "We have found the following errors so far", False)}} +
+ +{%endblock%} -- cgit v1.2.3