diff options
author | Frederick Muriuki Muriithi | 2024-09-26 16:01:34 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-26 16:01:34 -0500 |
commit | e9c343766ac9ca5831b223960941a5fe8d837e30 (patch) | |
tree | 4c4b7d4dde5b33c530abfbf79ca2a28e8a8c41e2 /uploader/templates/phenotypes/select-population.html | |
parent | d13071900de2ba73b829f52b96a1593da600118a (diff) | |
download | gn-uploader-e9c343766ac9ca5831b223960941a5fe8d837e30.tar.gz |
Enable selecting population for phenotypes.
Diffstat (limited to 'uploader/templates/phenotypes/select-population.html')
-rw-r--r-- | uploader/templates/phenotypes/select-population.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/uploader/templates/phenotypes/select-population.html b/uploader/templates/phenotypes/select-population.html new file mode 100644 index 0000000..eafd4a7 --- /dev/null +++ b/uploader/templates/phenotypes/select-population.html @@ -0,0 +1,28 @@ +{%extends "phenotypes/base.html"%} +{%from "flash_messages.html" import flash_all_messages%} +{%from "species/macro-display-species-card.html" import display_species_card%} +{%from "populations/macro-select-population.html" import select_population_form%} + +{%block title%}Phenotypes{%endblock%} + +{%block pagetitle%}Phenotypes{%endblock%} + + +{%block contents%} +{{flash_all_messages()}} + +<div class="row"> + <p>Select the population for your phenotypes to view and manage the phenotype + datasets that relate to it.</p> +</div> + +<div class="row"> + {{select_population_form(url_for("species.populations.phenotypes.select_population", + species_id=species.SpeciesId), + populations)}} +</div> +{%endblock%} + +{%block sidebarcontents%} +{{display_species_card(species)}} +{%endblock%} |