diff options
author | Frederick Muriuki Muriithi | 2024-09-26 14:18:45 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-26 14:18:45 -0500 |
commit | d13071900de2ba73b829f52b96a1593da600118a (patch) | |
tree | 656b674a3b34bbb6650ca6a07b54f8e23660c697 /uploader/templates/phenotypes/index.html | |
parent | c542cecda4c7c21bde7668f19a1b3e20f9a2b7b9 (diff) | |
download | gn-uploader-d13071900de2ba73b829f52b96a1593da600118a.tar.gz |
Initialise the phenotypes section.
Diffstat (limited to 'uploader/templates/phenotypes/index.html')
-rw-r--r-- | uploader/templates/phenotypes/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/uploader/templates/phenotypes/index.html b/uploader/templates/phenotypes/index.html new file mode 100644 index 0000000..0c691e6 --- /dev/null +++ b/uploader/templates/phenotypes/index.html @@ -0,0 +1,26 @@ +{%extends "phenotypes/base.html"%} +{%from "flash_messages.html" import flash_all_messages%} +{%from "species/macro-select-species.html" import select_species_form%} + +{%block title%}Phenotypes{%endblock%} + +{%block pagetitle%}Phenotypes{%endblock%} + + +{%block contents%} +{{flash_all_messages()}} + +<div class="row"> + <p>This section deals with phenotypes that + <span class="text-warning"> + <span class="glyphicon glyphicon-exclamation-sign"></span> + … what are the characteristics of these phenotypes? …</span></p> + <p>Select the species to begin the process of viewing/uploading data about + your phenotypes</p> +</div> + +<div class="row"> + {{select_species_form(url_for("species.populations.phenotypes.index"), + species)}} +</div> +{%endblock%} |