aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/index.html
blob: e99b031a3e4df13a7f68bc0f5b670092c75fc577 (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 "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('entry.index')}}">Home</a>
</li>
{%endblock%}

{%block contents%}

<div class="row">
  <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%}