aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/expression-data/index.html
blob: 9ba3582db2833cc4a5e013babdaae8b191829e5b (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
33
{%extends "expression-data/base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "species/macro-select-species.html" import select_species_form%}

{%block title%}Expression Data{%endblock%}

{%block pagetitle%}Expression Data{%endblock%}

{%block breadcrumb%}
<li class="breadcrumb-item">
  <a href="{{url_for('base.index')}}">Home</a>
</li>
<li class="breadcrumb-item active">
  <a href="{{url_for('species.populations.expression-data.index')}}"
     title="Upload expression data.">
    Expression Data</a>
</li>
{%endblock%}

{%block contents%}
<div class="row">
  <h2 class="heading">Expression Data</h2>
  {{flash_all_messages()}}

  <p>This section allows you to enter the expression data for your experiment.
    You will need to select the species that your data concerns below.</p>
</div>

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