blob: 0c691e63092d1067abca5bd672f80854e75f7bf1 (
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
|
{%extends "phenotypes/base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "species/macro-select-species.html" import select_species_form%}
{%block title%}Phenotypes{%endblock%}
{%block pagetitle%}Phenotypes{%endblock%}
{%block contents%}
{{flash_all_messages()}}
<div class="row">
<p>This section deals with phenotypes that
<span class="text-warning">
<span class="glyphicon glyphicon-exclamation-sign"></span>
… what are the characteristics of these phenotypes? …</span></p>
<p>Select the species to begin the process of viewing/uploading data about
your phenotypes</p>
</div>
<div class="row">
{{select_species_form(url_for("species.populations.phenotypes.index"),
species)}}
</div>
{%endblock%}
|