aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/genotypes/index.html
blob: b50ebc53f07292d093997f57bbdbd52cc30d7563 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{%extends "genotypes/base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "species/macro-select-species.html" import select_species_form%}

{%block title%}Genotypes{%endblock%}

{%block pagetitle%}Genotypes{%endblock%}


{%block contents%}
{{flash_all_messages()}}

<div class="row">
  <p>
    This section allows you to upload genotype information for your experiments,
    in the case that you have not previously done so.
  </p>
  <p>
    We'll need to link the genotypes to the species and population, so do please
    go ahead and select those in the next two steps.
  </p>
</div>

<div class="row">
  {{select_species_form(url_for("species.populations.genotypes.index"),
  species)}}
</div>
{%endblock%}

{%block javascript%}
<script type="text/javascript" src="/static/js/species.js"></script>
{%endblock%}