aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/samples/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'uploader/templates/samples/index.html')
-rw-r--r--uploader/templates/samples/index.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/uploader/templates/samples/index.html b/uploader/templates/samples/index.html
new file mode 100644
index 0000000..ee4a63e
--- /dev/null
+++ b/uploader/templates/samples/index.html
@@ -0,0 +1,19 @@
+{%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>GeneNetwork has a selection of different species of organisms to choose from. Within those species, there are the populations of interest for a variety of experiments, from which you, the researcher, picked your samples (or individuals or cases) from. Here you can provide some basic details about your samples.</p>
+ <p>To start off, we will need to know what species and population your samples belong to. Please provide that information in the next sections.</p>
+
+ {{select_species_form(url_for("species.populations.samples.index"), species)}}
+</div>
+{%endblock%}