-
Notifications
You must be signed in to change notification settings - Fork 0
/
uiMenu.R
51 lines (50 loc) · 3.04 KB
/
uiMenu.R
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
# config menu in the top-right corner
# last update:2016-10-06
uiMenu <- function(){
tabPanel(HTML(paste0("Version</a></li>",
"<li><a href=\"https://github.com/OwnYourData/app-",
appName,
"/blob/master/README.md\">Dokumentation</a></li>",
"<li><a href=\"javascript:void(0);\" onclick=\"$('#startConfig').modal('show');\">Konfiguration")),
fluidRow(
column(1),
column(10,
tags$div(class='panel panel-default',
tags$div(class='panel-heading',
style='padding:0',
tags$h3(class='panel-title pull-left', 'Version',
style='font-size:200%;padding:10px 15px'),
tags$div(class='clearfix')
),
tags$div(class='panel-body',
tagList(
h3(paste('akutelle Version:', currVersion)),
hr(),
h3('Versionsverlauf'),
htmlOutput('versionHistory'),
hr(),
p('Support: ',
a(href='mailto:support@ownyourdata.eu',
'support@ownyourdata.eu')),
p('Bugtracking: ',
a(href=paste0('https://github.com/OwnYourData/app-',
appName,
'/issues'),
'Github')),
p('entwickelt von ',
a(href='https://www.ownyourdata.eu',
'https://OwnYourData.eu')),
p('MIT Lizenz, 2016')
)
)
)
)
),
fluidRow(
column(1),
column(10,
actionButton('backToApp', 'Zurück', style='margin-bottom:20px')),
column(1)
)
)
}