-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
79 lines (69 loc) · 2.55 KB
/
ui.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
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
library(shiny)
library(ggplot2)
library(rCharts)
shinyUI(fluidPage(
tags$head(tags$link(rel="shortcut icon", href="www/favicon.ico")),
title = "AMF DRC Dashboard",
navbarPage(
title=div(img(src="https://www.againstmalaria.com/images/logo_AMF.gif", href="https://www.againstmalaria.com/"), h1("Donnees Kanzala Summary")),
# Capacity Test panel
tabPanel("Capacity Test",
fluidRow(
column(3),
column(1 #offset=1,tableOutput('capacity.gain')
),
column(1 #offset=1,tableOutput('coverage.gain')
)
),#fluidRow
fluidRow(
column(10,
tabsetPanel( #TT to have a consistent view with Field Test panel
tabPanel("Device",
fluidRow(
column(2),#column
column(10)
)#fluidRow
)#tabPanel
)#tabsetPanel
)#column
),#fluidRow
fluidRow(
column(10,
tabsetPanel(
tabPanel("Details" #dataTableOutput('summary.details')
),
tabPanel("Data" #dataTableOutput("summary.stats")
),
tabPanel("Summary" #dataTableOutput("summary.table")
)
)#tabsetPanel
)#column
)#fluidRow
),#tabPanel
# End of Capacity Test panel
# Field test panel
tabPanel("Field Test",
fluidRow(
column(2)#column
),#fluidRow
fluidRow(
column(10, #TT to control the overall width of the dropdown options and the chart
tabsetPanel(
tabPanel("Device",
fluidRow(),#tabPanel
tabPanel("Time",
fluidRow()#fluidRow
)#tabPanel
)#tabsetPanel
)#column
),#fluidRow,
fluidRow(
column(10,
tabsetPanel()#tabsetPanel
)#column
)#fluidRow
)#tabpanel
# End of Field Test panel
)#navbarPage
))
)#fluidpage #shinyUI