diff options
author | Frederick Muriuki Muriithi | 2025-02-18 16:24:14 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-02-18 16:24:14 -0600 |
commit | 75add682a8d63a30e947b6bcd8d2e5dfee06c297 (patch) | |
tree | 45879792ca984fc5ef20933172742e48e4a40d97 /uploader/templates/genotypes | |
parent | c403183a504769af6b3aa25b5438e945efbc91ff (diff) | |
download | gn-uploader-75add682a8d63a30e947b6bcd8d2e5dfee06c297.tar.gz |
Use new searchable list tables with off-ramps for data creation.
Diffstat (limited to 'uploader/templates/genotypes')
-rw-r--r-- | uploader/templates/genotypes/index.html | 4 | ||||
-rw-r--r-- | uploader/templates/genotypes/select-population.html | 16 |
2 files changed, 9 insertions, 11 deletions
diff --git a/uploader/templates/genotypes/index.html b/uploader/templates/genotypes/index.html index e749f5a..b50ebc5 100644 --- a/uploader/templates/genotypes/index.html +++ b/uploader/templates/genotypes/index.html @@ -26,3 +26,7 @@ species)}} </div> {%endblock%} + +{%block javascript%} +<script type="text/javascript" src="/static/js/species.js"></script> +{%endblock%} diff --git a/uploader/templates/genotypes/select-population.html b/uploader/templates/genotypes/select-population.html index 7c81943..acdd063 100644 --- a/uploader/templates/genotypes/select-population.html +++ b/uploader/templates/genotypes/select-population.html @@ -12,20 +12,14 @@ {{flash_all_messages()}} <div class="row"> - <p> - You have indicated that you intend to upload the genotypes for species - '{{species.FullName}}'. We now just require the population for your - experiment/study, and you should be good to go. - </p> -</div> - -<div class="row"> - {{select_population_form(url_for("species.populations.genotypes.select_population", - species_id=species.SpeciesId), - populations)}} + {{select_population_form(url_for("species.populations.genotypes.select_population", species_id=species.SpeciesId), species, populations)}} </div> {%endblock%} {%block sidebarcontents%} {{display_species_card(species)}} {%endblock%} + +{%block javascript%} +<script type="text/javascript" src="/static/js/populations.js"></script> +{%endblock%} |