diff options
author | Frederick Muriuki Muriithi | 2024-09-13 10:34:24 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-13 10:45:49 -0500 |
commit | 2847c193832faf0e85a117ca3ac35e4afbcf8d12 (patch) | |
tree | 47ffe86f9eca3d0cc3d1ab5b6e64802cf7e499cd /uploader/templates/samples/select-population.html | |
parent | 0ab59053fb5e63614b9ac5c94fbecff66a48b8c1 (diff) | |
download | gn-uploader-2847c193832faf0e85a117ca3ac35e4afbcf8d12.tar.gz |
Samples: provide more informative page content.
Diffstat (limited to 'uploader/templates/samples/select-population.html')
-rw-r--r-- | uploader/templates/samples/select-population.html | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/uploader/templates/samples/select-population.html b/uploader/templates/samples/select-population.html index 8e22ac1..f437780 100644 --- a/uploader/templates/samples/select-population.html +++ b/uploader/templates/samples/select-population.html @@ -12,20 +12,25 @@ {{flash_all_messages()}} <div class="row"> - <p>Select the population to use with your samples:</p> + <p>You have selected "{{species.FullName}}" as the species that your data relates to.</p> + <p>Next, we need information regarding the population your data relates to. Do please select the population from the existing ones below</p> +</div> + +<div class="row"> {{select_population_form( url_for("species.populations.samples.select_population", species_id=species.SpeciesId), populations)}} </div> -<div class="row"> - <p><strong>Cannot find your population in the list?</strong></p> - <p>If you cannot find the population you want in the drop-down above, you can - instead, +<div class="row"> + <p> + If you cannot find the population your data relates to in the drop-down + above, you might want to <a href="{{url_for('species.populations.create_population', species_id=species.SpeciesId)}}" title="Create a new population for species '{{species.FullName}},"> - create a new population</a>. + add a new population to GeneNetwork</a> + instead. </div> {%endblock%} |