forked from bimberlabinternal/BimberLabKeyModules
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadmin.html
More file actions
44 lines (42 loc) · 2.06 KB
/
admin.html
File metadata and controls
44 lines (42 loc) · 2.06 KB
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
<script type="text/javascript" nonce="<%=scriptNonce%>">
Ext4.onReady(function(){
var panel = Ext4.create('Ext.panel.Panel', {
border: false,
style: 'padding: 5px;',
defaults: {
border: false
},
items: [{
xtype: 'ldk-linkbutton',
text: 'Manage User Requests',
href: LABKEY.ActionURL.buildURL('query', 'executeQuery', null, {schemaName: 'mGap', queryName: 'userRequests', 'query.viewName': 'Pending Requests'})
},{
xtype: 'ldk-linkbutton',
text: 'Manage JBrowse Sessions',
href: LABKEY.ActionURL.buildURL('query', 'executeQuery', null, {schemaName: 'jbrowse', queryName: 'databases'})
},{
xtype: 'ldk-linkbutton',
text: 'Manage Genomes',
href: LABKEY.ActionURL.buildURL('query', 'executeQuery', null, {schemaName: 'sequenceanalysis', queryName: 'reference_libraries'})
},{
xtype: 'ldk-linkbutton',
text: 'Manage Sequence Outputs',
href: LABKEY.ActionURL.buildURL('query', 'executeQuery', null, {schemaName: 'sequenceanalysis', queryName: 'outputfiles'})
},{
xtype: 'ldk-linkbutton',
text: 'Manage JBrowse Tracks',
href: LABKEY.ActionURL.buildURL('query', 'executeQuery', null, {schemaName: 'mgap', queryName: 'releaseTracks'})
},{
xtype: 'ldk-linkbutton',
text: 'Manage Annotations',
href: LABKEY.ActionURL.buildURL('query', 'executeQuery', null, {schemaName: 'mgap', queryName: 'annotations'})
},{
xtype: 'ldk-linkbutton',
text: 'Manage Genetic Measurements',
href: LABKEY.ActionURL.buildURL('query', 'executeQuery', null, {schemaName: 'mgap', queryName: 'geneticMeasurements'})
}]
});
var webpart = <%=webpartContext%>;
panel.render(webpart.wrapperDivId);
});
</script>