diff options
author | Frederick Muriuki Muriithi | 2024-09-18 17:12:13 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-18 17:12:13 -0500 |
commit | 0b1da34d601a3c57a7a12795b4914fd7748e8f6e (patch) | |
tree | 82f3b63958a3d6ccab2e93c9f2ec8ed3b786326f /uploader/templates/genotypes | |
parent | 66e7970c3ff5305f8a7d6d60d34b974389f8fe78 (diff) | |
download | gn-uploader-0b1da34d601a3c57a7a12795b4914fd7748e8f6e.tar.gz |
Add genotype dataset UI
Diffstat (limited to 'uploader/templates/genotypes')
-rw-r--r-- | uploader/templates/genotypes/list-genotypes.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/uploader/templates/genotypes/list-genotypes.html b/uploader/templates/genotypes/list-genotypes.html index 0efc693..31b9eeb 100644 --- a/uploader/templates/genotypes/list-genotypes.html +++ b/uploader/templates/genotypes/list-genotypes.html @@ -90,7 +90,27 @@ </div> <div class="row"> + <h2>Genotype Datasets</h2> + <p>The genotype data is organised under various genotype datasets. You can + click on the link for the relevant dataset to view a little more information + about it.</p> + <p>You can also create a new genotype dataset by clicking the button below. + <br /> + <a href="#create-new-genotype-dataset" + title="Create a new genotype dataset for the '{{population.FullName}}' population for the '{{species.FullName}}' species." + class="btn btn-primary"> + create new genotype dataset</a></p> + + {%if datasets | length > 0%} + <table class="table"> + </table> + {%else%} + <p class="text-warning"> + <span class="glyphicon glyphicon-exclamation-sign"></span> + There are no genotype datasets to display, yet! + </p> + {%endif%} </div> {%endblock%} |