blob: d68c6c058aa398e5279450d981c1c174411e649b (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta application-name="GeneNetwork Quality-Control Application" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{%block extrameta%}{%endblock%}
<title>GN Uploader: {%block title%}{%endblock%}</title>
<link rel="stylesheet" type="text/css"
href="{{url_for('base.bootstrap',
filename='css/bootstrap.min.css')}}" />
<link rel="stylesheet" type="text/css"
href="{{url_for('base.bootstrap',
filename='css/bootstrap-theme.min.css')}}" />
<link rel="stylesheet" type="text/css" href="/static/css/styles.css" />
{%block css%}{%endblock%}
</head>
<body>
<header id="header" class="container-fluid">
<div class="row">
<span class="header col-lg-9">GeneNetwork Data Quality Control and Upload</span>
<nav class="header-nav col-lg-3">
<ul class="nav justify-content-end">
<li class="btn">
{%if user_logged_in()%}
<a href="{{url_for('oauth2.logout')}}"
title="Log out of the system">Log Out</a>
{%else%}
<a href="{{authserver_authorise_uri()}}"
title="Log in to the system">Log In</a>
{%endif%}
</li>
</ul>
</nav>
</header>
<aside id="nav-sidebar" class="container-fluid">
<ul class="nav flex-column">
<li><a href="/" >Home</a></li>
<li><a href="{{url_for('species.list_species')}}"
title="View and manage species information.">Species</a></li>
<li><a href="#"
title="Upload Genotype data.">Genotype Data</a></li>
<li><a href="{{url_for('species.populations.index')}}"
title="View and manage species populations.">Populations</a></li>
<li><a href="{{url_for('species.populations.samples.index')}}"
title="Upload population samples.">Samples</a></li>
<li><a href="{{url_for('expression-data.index.index')}}"
title="Upload expression data.">Expression Data</a></li>
<li><a href="#"
title="Upload phenotype data.">Phenotype Data</a></li>
<li><a href="#"
title="Upload individual data.">Individual Data</a></li>
<li><a href="#"
title="Upload RNA-Seq data.">RNA-Seq Data</a></li>
</ul>
</aside>
<main id="main" class="main container-fluid">
<div class="pagetitle row">
<h1>GN Uploader: {%block pagetitle%}{%endblock%}</h1>
<nav>
<ol class="breadcrumb">
<li {%if activelink is not defined or activelink=="home"%}
class="breadcrumb-item active"
{%else%}
class="breadcrumb-item"
{%endif%}>
<a href="{{url_for('base.index')}}">Home</a>
</li>
{%block lvl1_breadcrumbs%}{%endblock%}
</ol>
</nav>
</div>
<div class="row">
<div class="container-fluid">
<div class="col-md-8 main-content">
{%block contents%}{%endblock%}
</div>
<div class="sidebar-content col-md-4">
{%block sidebarcontents%}{%endblock%}
</div>
</div>
</div>
</main>
<script src="{{url_for('base.jquery',
filename='jquery.min.js')}}"></script>
<script src="{{url_for('base.bootstrap',
filename='js/bootstrap.min.js')}}"></script>
{%block javascript%}{%endblock%}
</body>
</html>
|