blob: e3f5af4ba15c38595b1aa66a00a960d8ff59f83e (
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
|
{%extends "base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%block title%}Home{%endblock%}
{%block pagetitle%}Home{%endblock%}
{%block breadcrumb%}
<li class="breadcrumb-item active">
<a href="{{url_for('base.index')}}">Home</a>
</li>
{%endblock%}
{%block contents%}
<div class="row">
{{flash_all_messages()}}
<div class="explainer">
<p>Welcome to the <strong>GeneNetwork Data Quality Control and Upload System</strong>. This system is provided to help in uploading your data onto GeneNetwork where you can do analysis on it.</p>
<p>Click on the menu items on the left to select the kind of data you want to upload.</p>
{%block extrapageinfo%}{%endblock%}
</div>
</div>
{%endblock%}
|