blob: 555b444ba833304f48a901630fc78a338d4d6011 (
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
|
{%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%}
{%block javascript%}
<script type="text/javascript" src="/static/js/species.js"></script>
{%endblock%}
|