diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-08-30 16:45:47 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-08-30 16:45:47 +0530 |
commit | 4815cbde39d6b18d482c33fa22816ecc8e755d37 (patch) | |
tree | 777bb20f423d602cfbcaa45435db5754305f3014 /app/templates | |
parent | e64830992db27939840bc68364de3f47441c154f (diff) |
stores a local copy in the reports folder
Diffstat (limited to 'app/templates')
-rw-r--r-- | app/templates/job_status.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/templates/job_status.html b/app/templates/job_status.html index 896d49a..89d2d55 100644 --- a/app/templates/job_status.html +++ b/app/templates/job_status.html @@ -8,6 +8,25 @@ <b>Description: </b>{{desc}}<br> <b>Status: </b>{{status}} +{% if status == 'Completed' %} + + <style> + iframe { + width: 100%; + height: 550px; + border: none; + overflow: hidden; + } + </style> + + <p>A detailed zip file containing this PDF, along with all supporting files (configuration, pictures, protein-ligands e.t.c) to your email.</p> + <h3>PDF Report</h3> + <section> + <iframe src={{PDFReport}} id="report"></iframe> + </section> + +{% endif %} + <section> <style> #growth{ |