aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/rqtl2/rqtl2-qc-job-status.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-07-25 11:07:33 -0500
committerFrederick Muriuki Muriithi2024-07-25 14:34:09 -0500
commit754e8f214b940e05298cb360ed829f5c685d55a5 (patch)
tree62c2c5b601746621f0949b38937ad232f006dee2 /qc_app/templates/rqtl2/rqtl2-qc-job-status.html
parentde9e1b9fe37928b864bea28b408de6c14d04526b (diff)
downloadgn-uploader-754e8f214b940e05298cb360ed829f5c685d55a5.tar.gz
Rename module: qc_app --> uploader
Diffstat (limited to 'qc_app/templates/rqtl2/rqtl2-qc-job-status.html')
-rw-r--r--qc_app/templates/rqtl2/rqtl2-qc-job-status.html41
1 files changed, 0 insertions, 41 deletions
diff --git a/qc_app/templates/rqtl2/rqtl2-qc-job-status.html b/qc_app/templates/rqtl2/rqtl2-qc-job-status.html
deleted file mode 100644
index f4a6266..0000000
--- a/qc_app/templates/rqtl2/rqtl2-qc-job-status.html
+++ /dev/null
@@ -1,41 +0,0 @@
-{%extends "base.html"%}
-{%from "flash_messages.html" import flash_messages%}
-
-{%block title%}Job Status{%endblock%}
-
-{%block extrameta%}
-<meta http-equiv="refresh" content="3">
-{%endblock%}
-
-{%block contents%}
-<h1 class="heading">R/qtl2 bundle: QC job status</h1>
-
-{%if geno_percent%}
-<p>
- <h2>Checking 'geno' file:</h2>
- <progress id="prg-geno-checking" value="{{geno_percent}}" max="100">
- {{geno_percent}}%</progress>
- {{geno_percent}}%</p>
-{%endif%}
-
-{%if pheno_percent%}
-<p>
- <h2>Checking 'pheno' file:</h2>
- <progress id="prg-pheno-checking" value="{{pheno_percent}}" max="100">
- {{pheno_percent}}%</progress>
- {{pheno_percent}}%</p>
-{%endif%}
-
-{%if phenose_percent%}
-<p>
- <h2>Checking 'phenose' file:</h2>
- <progress id="prg-phenose-checking" value="{{phenose_percent}}" max="100">
- {{phenose_percent}}%</progress>
- {{phenose_percent}}%</p>
-{%endif%}
-
-<h4>Log</h4>
-<div class="cli-output">
- <pre>{{"\n".join(messages)}}</pre>
-</div>
-{%endblock%}