From 70e626514fe205ca85a03adf60e4211e140ac7e4 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Tue, 3 Dec 2024 16:37:28 -0600 Subject: Display the files metadata in progress section. --- uploader/templates/phenotypes/job-status.html | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) (limited to 'uploader/templates/phenotypes') diff --git a/uploader/templates/phenotypes/job-status.html b/uploader/templates/phenotypes/job-status.html index 726d301..30316b5 100644 --- a/uploader/templates/phenotypes/job-status.html +++ b/uploader/templates/phenotypes/job-status.html @@ -30,8 +30,32 @@ {%block contents%} {%if job%} +

Progress

-

Status: {{job.status}}

+

Process Status: {{job.status}}

+ {%if metadata%} + + + + + + + + + + + + {%for file,meta in metadata.items()%} + + + + + + + {%endfor%} + +
FileStatusLines ProcessedTotal Errors
{{file}}{{meta.status}}{{meta.linecount}}{{meta["total-errors"]}}
+ {%endif%} {%if job.status in ("completed:success", "success")%}