-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathui.R
More file actions
27 lines (26 loc) · 974 Bytes
/
ui.R
File metadata and controls
27 lines (26 loc) · 974 Bytes
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
shinyUI(
dashboardPage(
dashboardHeader(title = 'Surlygon Finances'),
dashboardSidebar(
sidebarMenu(
menuItem("Upload Data", tabName = 'upload_data'),
menuItem("Cash Flow",
menuSubItem("By Year", tabName = 'cash_flow_year'),
menuSubItem("By Quarter", tabName = 'cash_flow_quarter'),
menuSubItem("By Month", tabName = 'cash_flow_month'),
menuSubItem("By Category", tabName = 'cash_flow_category')
)
)
),
dashboardBody(
includeCSS("www/custom.css"),
tabItems(
tabItem(tabName = "upload_data", uiOutput("upload_data")),
tabItem(tabName = "cash_flow_year", moduleCashFlowYearUI("year")),
tabItem(tabName = "cash_flow_quarter", moduleCashFlowQuarterUI("quarter")),
tabItem(tabName = "cash_flow_month", moduleCashFlowMonthUI("month")),
tabItem(tabName = "cash_flow_category", moduleCashFlowCategoryUI("category"))
)
)
)
)