blob: 7c88c0195d9e2bdbe4435b9006d4401a048f2e1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{%extends "samples/base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "species/macro-select-species.html" import select_species_form%}
{%block title%}Populations{%endblock%}
{%block pagetitle%}Populations{%endblock%}
{%block contents%}
{{flash_all_messages()}}
<div class="row">
<p>Here, you can upload the samples/individuals that were used in your
experiments.</p>
<p>Since the samples are linked to specific species and populations, we will
need to first select them in the next few steps.</p>
{{select_species_form(url_for("species.populations.samples.index"), species)}}
</div>
{%endblock%}
|