aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/genotypes/index.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-09-13 09:18:18 -0500
committerFrederick Muriuki Muriithi2024-09-13 10:40:30 -0500
commit36fc8996fa830078866e17aab7d9c177c74c835b (patch)
tree2cb62c2d5fee89c0c922475a304beb8e8f201122 /uploader/templates/genotypes/index.html
parent2f1279b5e45dfff972fa6462d94a0b93b6a1144f (diff)
downloadgn-uploader-36fc8996fa830078866e17aab7d9c177c74c835b.tar.gz
Initialise genotypes' UI
Diffstat (limited to 'uploader/templates/genotypes/index.html')
-rw-r--r--uploader/templates/genotypes/index.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/uploader/templates/genotypes/index.html b/uploader/templates/genotypes/index.html
new file mode 100644
index 0000000..4f5c3a8
--- /dev/null
+++ b/uploader/templates/genotypes/index.html
@@ -0,0 +1,24 @@
+{%extends "genotypes/base.html"%}
+{%from "flash_messages.html" import flash_all_messages%}
+{%from "species/macro-select-species.html" import select_species_form%}
+
+{%block title%}Genotypes{%endblock%}
+
+{%block pagetitle%}Genotypes{%endblock%}
+
+
+{%block contents%}
+{{flash_all_messages()}}
+
+<div class="row">
+ <p><strong>We have not implemented this part yet!</strong></p>
+</div>
+
+<div class="row">
+ <h3>Some Important Concepts to Consider/Remember</h3>
+ <ul>
+ <li>Reference vs. Non-reference alleles</li>
+ <li>In <em>GenoCode</em> table, items are ordered by <strong>InbredSet</strong></li>
+ </ul>
+</div>
+{%endblock%}