-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold_content.txt
34 lines (34 loc) · 1.26 KB
/
old_content.txt
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
old_content: {
h1 'The Question'
table {
tr {
td 'Question'
td data.query.question
}
tr {
td 'Query'
td data.query.query
}
tr {
td 'Size'
td data.documents.size()
}
tr {
td 'Time'
td duration
}
}
h1 "Send Results To Galaxy"
div(id:'msgbox', class:'alert hidden', '')
form(action:'save', method:'post', class:'box') {
yieldUnescaped '''<p>To send json to <a href="https://galaxy.lappsgrid.org">LAPPS/Galaxy</a>
you must be a registered user. Enter you Galaxy username (email address) below and the files will be available
in the <i>Upload file</i> dialog (click the <i>Choose FTP files</i> button). If files with the same name already exists on the Galaxy server
they will be overwritten.</p>'''
fieldset(class:'no-border') {
input(type:'email', id:'username', name:'username', required:'true', placeHolder:'Enter your Galaxy username', oninput:'validate(this)', size:40)
input(type:'text', name:'key', id:'key', style:'display:none', value:key)
input(type:'submit', id:'submit', class:'submit', value:'Send to Galaxy')
}
}
}