1
1
< div id ="content ">
2
- < form >
3
- < div class ="flex flex-row gap-4 ">
4
- < div >
5
- < label class ="label "> Source</ label >
6
- < input
7
- class ="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline "
8
- type ="text " name ="source ">
9
- </ div >
10
- < div >
11
- < label class ="label "> SHA</ label >
12
- < input
13
- class ="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline "
14
- type ="text " class ="form-control " name ="sha ">
15
- </ div >
16
- </ div >
17
- < label > Workloads</ label >
18
- < div class ="flex flex-row gap-4 ">
19
- < div class ="flex flex-col ">
20
- < label > < input class ="accent-orange-500 " type ="checkbox " name ="workloads " value ="all " checked >
21
- All</ label >
22
- < label > < input class ="accent-orange-500 " type ="checkbox " name ="workloads " value ="OLTP "> OLTP</ label >
23
- < label > < input class ="accent-orange-500 " type ="checkbox " name ="workloads " value ="OLTP-READONLY ">
24
- OLTP-READONLY</ label >
25
- < label > < input class ="accent-orange-500 " type ="checkbox " name ="workloads " value ="OLTP-SET ">
26
- OLTP-SET</ label >
27
- </ div >
28
- < div class ="flex flex-col ">
29
- < label > < input class ="accent-orange-500 " type ="checkbox " name ="workloads " value ="TPCC "> TPCC</ label >
30
- < label > < input class ="accent-orange-500 " type ="checkbox " name ="workloads " value ="TPCC_FK ">
31
- TPCC_FK</ label >
32
- < label > < input class ="accent-orange-500 " type ="checkbox " name ="workloads " value ="TPCC_FK_UNMANAGED ">
33
- TPCC_FK_UNMANAGED</ label >
34
- < label > < input class ="accent-orange-500 " type ="checkbox " name ="workloads " value ="TPCC_UNSHARDED ">
35
- TPCC_UNSHARDED</ label >
36
- </ div >
37
- </ div >
38
- < div >
39
- < label class ="label "> Number of executions</ label >
40
- < input
41
- class ="shadow appearance-none border rounded w-20 py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline "
42
- type ="number " name ="numberOfExecutions " value ="1 " min ="1 " max ="10 ">
43
- </ div >
2
+ < form >
3
+ < div class ="flex flex-row gap-4 ">
4
+ < div >
5
+ < label class ="label "> Source</ label >
6
+ < input
7
+ class ="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline "
8
+ type ="text "
9
+ name ="source "
10
+ />
11
+ </ div >
12
+ < div >
13
+ < label class ="label "> SHA</ label >
14
+ < input
15
+ class ="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline "
16
+ type ="text "
17
+ class ="form-control "
18
+ name ="sha "
19
+ />
20
+ </ div >
21
+ </ div >
22
+ < label > Workloads</ label >
23
+ < div class ="flex flex-row gap-4 ">
24
+ < div class ="flex flex-col ">
25
+ < label
26
+ > < input
27
+ class ="accent-orange-500 "
28
+ type ="checkbox "
29
+ name ="workloads "
30
+ value ="all "
31
+ checked
32
+ />
33
+ All</ label
34
+ >
35
+ < label
36
+ > < input
37
+ class ="accent-orange-500 "
38
+ type ="checkbox "
39
+ name ="workloads "
40
+ value ="OLTP "
41
+ />
42
+ OLTP</ label
43
+ >
44
+ < label
45
+ > < input
46
+ class ="accent-orange-500 "
47
+ type ="checkbox "
48
+ name ="workloads "
49
+ value ="OLTP-READONLY "
50
+ />
51
+ OLTP-READONLY</ label
52
+ >
53
+ < label
54
+ > < input
55
+ class ="accent-orange-500 "
56
+ type ="checkbox "
57
+ name ="workloads "
58
+ value ="OLTP-SET "
59
+ />
60
+ OLTP-SET</ label
61
+ >
62
+ </ div >
63
+ < div class ="flex flex-col ">
64
+ < label
65
+ > < input
66
+ class ="accent-orange-500 "
67
+ type ="checkbox "
68
+ name ="workloads "
69
+ value ="TPCC "
70
+ />
71
+ TPCC</ label
72
+ >
73
+ < label
74
+ > < input
75
+ class ="accent-orange-500 "
76
+ type ="checkbox "
77
+ name ="workloads "
78
+ value ="TPCC_FK "
79
+ />
80
+ TPCC_FK</ label
81
+ >
82
+ < label
83
+ > < input
84
+ class ="accent-orange-500 "
85
+ type ="checkbox "
86
+ name ="workloads "
87
+ value ="TPCC_FK_UNMANAGED "
88
+ />
89
+ TPCC_FK_UNMANAGED</ label
90
+ >
91
+ < label
92
+ > < input
93
+ class ="accent-orange-500 "
94
+ type ="checkbox "
95
+ name ="workloads "
96
+ value ="TPCC_UNSHARDED "
97
+ />
98
+ TPCC_UNSHARDED</ label
99
+ >
100
+ </ div >
101
+ </ div >
102
+ < div >
103
+ < label class ="label "> Number of executions</ label >
104
+ < input
105
+ class ="shadow appearance-none border rounded w-20 py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline "
106
+ type ="number "
107
+ name ="numberOfExecutions "
108
+ value ="1 "
109
+ min ="1 "
110
+ max ="10 "
111
+ />
112
+ </ div >
44
113
45
- < button hx-post ="/admin/executions/add "
46
- class ="bg-orange-500 hover:bg-orange-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline "
47
- type ="submit "> Add Execution</ button >
48
- </ form >
49
- </ div >
114
+ < button
115
+ hx-post ="/admin/executions/add "
116
+ class ="bg-orange-500 hover:bg-orange-700 text-white font-bold py-2 px-4 rounded focus:outline-none focus:shadow-outline "
117
+ type ="submit "
118
+ >
119
+ Add Execution
120
+ </ button >
121
+ </ form >
122
+ </ div >
0 commit comments