aboutsummaryrefslogtreecommitdiff
path: root/uploader
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-09-18 17:12:13 -0500
committerFrederick Muriuki Muriithi2024-09-18 17:12:13 -0500
commit0b1da34d601a3c57a7a12795b4914fd7748e8f6e (patch)
tree82f3b63958a3d6ccab2e93c9f2ec8ed3b786326f /uploader
parent66e7970c3ff5305f8a7d6d60d34b974389f8fe78 (diff)
downloadgn-uploader-main.tar.gz
Add genotype dataset UIHEADmain
Diffstat (limited to 'uploader')
-rw-r--r--uploader/static/css/styles.css2
-rw-r--r--uploader/templates/genotypes/list-genotypes.html20
2 files changed, 21 insertions, 1 deletions
diff --git a/uploader/static/css/styles.css b/uploader/static/css/styles.css
index 30d5808..4565aba 100644
--- a/uploader/static/css/styles.css
+++ b/uploader/static/css/styles.css
@@ -102,7 +102,7 @@ dd {
padding-bottom: 1em;
}
-input[type="submit"] {
+input[type="submit"], .btn {
text-transform: capitalize;
}
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%}