blob: e6873e262f4d1b26ee61ba42edba14b50a9d6079 (
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
106
107
108
109
110
111
|
{%extends "sui-base.html"%}
{%from "flash_messages.html" import flash_all_messages%}
{%from "macro-step-indicator.html" import step_indicator%}
{%block title%}Home{%endblock%}
{%block pagetitle%}Home{%endblock%}
{%block extra_breadcrumbs%}{%endblock%}
{%block contents%}
<div class="row">{{flash_all_messages()}}</div>
{%if user_logged_in()%}
<div class="row">
<div class="row">
<h2>{{step_indicator("1")}} Select the Species</h2>
<p>The data in Genenetwork is related to one species or another. To get
started, please select the species you want to work with.</p>
</div>
</div>
<div class="row">
<form method="GET" action="{{url_for('base.index')}}" class="form-horizontal">
<input type="hidden" name="streamlined_ui", value="{{streamlined_ui}}" />
{%if species | length != 0%}
<div style="margin-top:3em;">
<table id="tbl-select-species" class="table compact stripe"
data-species-list='{{species | tojson}}'>
<thead>
<tr>
<th></th>
<th>Species Name</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
{%else%}
<label class="control-label" for="rdo-cant-find-species">
<input id="rdo-cant-find-species" type="radio" name="species_id"
value="CREATE-SPECIES" />
There are no species to select from. Create the first one.</label>
<div class="col-sm-offset-10 col-sm-2">
<input type="submit"
class="btn btn-primary col-sm-offset-1"
value="continue" />
</div>
{%endif%}
<div class="row form-buttons">
<div class="col">
<input type="submit"
class="btn btn-primary"
value="continue with selected" />
</div>
<div class="col"><strong>OR</strong></div>
<div class="col">
<a href="{{url_for('species.create_species', return_to='base.index')}}"
title="Create a new species.">Create a new Species</a>
</div>
</div>
</form>
</div>
{%else%}
<div class="row">
<p>The Genenetwork Uploader (<em>gn-uploader</em>) enables upload of new data
into the Genenetwork System. It provides Quality Control over data, and
guidance in case you data does not meet the standards for acceptance.</p>
<p>
<a href="{{authserver_authorise_uri()}}"
title="Sign in to the system"
class="btn btn-primary">Sign in</a>
to get started.</p>
</div>
{%endif%}
{%endblock%}
{%block sidebarcontents%}
<div class="row">
<form id="frm-quick-navigation">
<legend>Quick Navigation</legend>
<div class="form-group">
<label for="fqn-species-id">Species</label>
<select name="species_id">
<option value="">Select species</option>
</select>
</div>
</form>
</div>
{%endblock%}
{%block javascript%}
<script type="text/javascript" src="/static/js/species.js"></script>
{%endblock%}
|