diff options
author | Peter Amstutz | 2020-07-16 16:27:32 -0400 |
---|---|---|
committer | Peter Amstutz | 2020-07-16 16:27:48 -0400 |
commit | d49f6b5e11a41a51cb257bbafdcba410544f8486 (patch) | |
tree | a79ace1119a78401c9383b0e107da4f9c1734ba1 /bh20simplewebuploader/templates | |
parent | d34374f0e822edd1539ea5de6f8522f2b761de3f (diff) | |
download | bh20-seq-resource-d49f6b5e11a41a51cb257bbafdcba410544f8486.tar.gz bh20-seq-resource-d49f6b5e11a41a51cb257bbafdcba410544f8486.tar.lz bh20-seq-resource-d49f6b5e11a41a51cb257bbafdcba410544f8486.zip |
Add "validated" and "running workflows" tables to statusanalysis-refactor
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>
Diffstat (limited to 'bh20simplewebuploader/templates')
-rw-r--r-- | bh20simplewebuploader/templates/status.html | 3 | ||||
-rw-r--r-- | bh20simplewebuploader/templates/validated.html | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/bh20simplewebuploader/templates/status.html b/bh20simplewebuploader/templates/status.html index a1cf28f..e89437e 100644 --- a/bh20simplewebuploader/templates/status.html +++ b/bh20simplewebuploader/templates/status.html @@ -7,7 +7,8 @@ <h1>Sequence upload processing status</h1> - <div class="status"> + <div class="status"> + {{ table }} </div> diff --git a/bh20simplewebuploader/templates/validated.html b/bh20simplewebuploader/templates/validated.html new file mode 100644 index 0000000..cee94bd --- /dev/null +++ b/bh20simplewebuploader/templates/validated.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> + {% include 'header.html' %} + <body> + {% include 'banner.html' %} + {% include 'menu.html' %} + + <h1>Validated sequences</h1> + + <div class="status"> + {{ table }} + </div> + +{% include 'footer.html' %} + + </body> +</html> |