blob: 35b64648a1363e3dabfb383f05ad2e05b5c4dabe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{%extends "platforms/base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "species/macro-select-species.html" import select_species_form%}
{%block title%}Platforms{%endblock%}
{%block pagetitle%}Platforms{%endblock%}
{%block contents%}
{{flash_all_messages()}}
<div class="row">
<p>In this section, you will be able to view and manage the sequencing
platforms that are currently supported by GeneNetwork.</p>
</div>
<div class="row">
{{select_species_form(url_for("species.platforms.index"), species)}}
</div>
{%endblock%}
|