forked from dewikiswani/LUSITA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pamTemplate.R
95 lines (89 loc) · 2.44 KB
/
pamTemplate.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
pamTemplate <- argonTabItem(
tabName = "template",
argonH1("Membangun PAM dari data template", display = 4),
argonRow(
argonCard(
width = 12,
title = "Membangun PAM dari data template",
src = NULL,
hover_lift = TRUE,
shadow = TRUE,
shadow_size = NULL,
hover_shadow = FALSE,
border_level = 0,
icon = argonIcon("atom"),
status = "primary",
background_color = NULL,
gradient = FALSE,
floating = FALSE,
argonRow(
argonColumn(
width = 12,
argonH1("Informasi Umum", display = 4),
h5("Langkah 1: menentukan informasi umum untuk data PAM yang dibangun"),
br(),
fluidRow(
column(2,
selectInput(("sut"),"Sistem Usaha Tani",choices = c("MONOKULTUR","AGROFORESTRI")),
),
column(2,
selectInput("kom","Komoditas",choices = "" ),
),
column(2,
selectInput("selected_prov",
"Pilih Provinsi:",
choices = ""),
),
column(2,
selectInput("selected_wilayah",
"Pilih Wilayah:",
choices = ""),
),
column(2,
selectInput(("th"),"Tahun",choices = "" ),
),
column(2,
selectInput(("tipeLahan"),"Tipe Lahan",choices = "" ),
),
column(2,
br(),
actionButton(("asumsiMakro_button"),"Tentukan Asumsi Makro",icon("paper-plane"),style="color: white;
background-color: green;")
)
)
)
),
argonRow(
argonColumn(
width = 12,
tags$div(id = 'uiShowMakro')
)
),
argonRow(
argonColumn(
width = 12,
tags$div(id = 'uiShowTable')
)
),
argonRow(
argonColumn(
width = 12,
tags$div(id = 'uiShowButton')
)
),
argonRow(
argonColumn(
width = 12,
tags$div(id = 'uiShowResult')
)
),
# argonRow(
# argonColumn(
# width = 12,
# actionButton("browser_button","Browser Button")
#
# )
# ),
)
)
)