{%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%}