zet-lib 1.3.42 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/Model.js +3176 -0
- package/lib/Util.js +959 -772
- package/lib/index.js +2 -0
- package/lib/views/index_ejs.txt +9 -0
- package/lib/views/indexcss_ejs.txt +2 -0
- package/lib/views/indexjs_ejs.txt +10 -0
- package/lib/views/router.txt +120 -0
- package/lib/views/view_ejs.txt +9 -0
- package/lib/views/view_layout.ejs +228 -0
- package/lib/views/zview.ejs +460 -0
- package/lib/views/zviewcss.ejs +0 -0
- package/lib/views/zviewjs.ejs +851 -0
- package/lib/zViewGenerator.js +1064 -0
- package/package.json +1 -1
|
@@ -0,0 +1,460 @@
|
|
|
1
|
+
<section class="mt-4">
|
|
2
|
+
<!--Grid row-->
|
|
3
|
+
<div class="row">
|
|
4
|
+
<!--Grid column-->
|
|
5
|
+
<div class="col-md-12 mb-2">
|
|
6
|
+
<!--Generator-->
|
|
7
|
+
<div class="card mb-3 wow fadeIn">
|
|
8
|
+
<div class="card-header bg-success text-white font-weight-bold">View Generator</div>
|
|
9
|
+
<div class="card-body">
|
|
10
|
+
<!-- Default form reply -->
|
|
11
|
+
<form id="formgenerator" method="post" action="/crud">
|
|
12
|
+
<div class="form-group">
|
|
13
|
+
<label for="table">View Name</label>
|
|
14
|
+
<%- selectView %>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<% if(view) {%>
|
|
18
|
+
<div class="form-group">
|
|
19
|
+
<label for="route">Title</label>
|
|
20
|
+
<input type="text" class="form-control" id="title" name="title"
|
|
21
|
+
value="<%- datas.name%>" />
|
|
22
|
+
</div>
|
|
23
|
+
<div class="form-group">
|
|
24
|
+
<label for="route">Route</label>
|
|
25
|
+
<input type="text" class="form-control" readonly id="route" name="route"
|
|
26
|
+
value="<%- route%>" />
|
|
27
|
+
</div>
|
|
28
|
+
<%} %>
|
|
29
|
+
|
|
30
|
+
<div class="text-center mt-4">
|
|
31
|
+
<% if(table) {%>
|
|
32
|
+
<button class="btn btn-danger text-white" id="delete_module"
|
|
33
|
+
type="button"><i class="fa fa-trash"></i> Delete View</button>
|
|
34
|
+
<%}%>
|
|
35
|
+
<button class="btn btn-success text-white" data-toggle="modal"
|
|
36
|
+
data-target="#add_table" type="button"><i class="fa fa-plus"></i>
|
|
37
|
+
Add View</button>
|
|
38
|
+
<% if(table) {%>
|
|
39
|
+
<button class="btn btn-info" id="savetab" type="button"><i
|
|
40
|
+
class="fa fa-paper-plane"></i> Save</button>
|
|
41
|
+
<a class="btn btn-warning " href="/<%- table%>" target="__blank"
|
|
42
|
+
type="button"><i class="fa fa-plane"></i> Go To <%- table%></a>
|
|
43
|
+
<%}%>
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
</form>
|
|
47
|
+
<!-- Default form reply -->
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
<!--Generator-->
|
|
51
|
+
<div class="card mb-3 wow fadeIn" id="divfields" style="display: none">
|
|
52
|
+
<div class="card-header secondary-color-dark text-white font-weight-bold">Fields</div>
|
|
53
|
+
<div class="card-body">
|
|
54
|
+
<!-- Default form reply -->
|
|
55
|
+
<form id="formfields" method="post" action="/generator/fields">
|
|
56
|
+
<div id="divtablist" class="row"></div>
|
|
57
|
+
<div id="contentfields"></div>
|
|
58
|
+
<div class="text-center mt-4">
|
|
59
|
+
<!-- Basic dropdown -->
|
|
60
|
+
|
|
61
|
+
<button class="btn btn-success m-0 px-3 waves-effect waves-light mr-2"
|
|
62
|
+
data-toggle="modal" data-target="#modal_custom_widget" type="button"><i
|
|
63
|
+
class="fas fa-plus-circle"></i> Custom Widget</button>
|
|
64
|
+
|
|
65
|
+
<button class="btn btn-warning m-0 px-3 waves-effect waves-light mr-2"
|
|
66
|
+
data-toggle="modal" data-target="#modal_joins" type="button"><i
|
|
67
|
+
class="fas fa-dice"></i> Join Modules</button>
|
|
68
|
+
|
|
69
|
+
<button class="btn secondary-color-dark px-3 text-white mr-2" id="save"
|
|
70
|
+
type="button"><i class="fa fa-paper-plane"></i> Save & Generate</button>
|
|
71
|
+
</div>
|
|
72
|
+
</form>
|
|
73
|
+
<!-- Default form reply -->
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
<!--/Generator-->
|
|
77
|
+
|
|
78
|
+
<div class="card mb-4 wow fadeIn card-script">
|
|
79
|
+
<div class="card-header font-weight-bold">
|
|
80
|
+
<span> Join Modules</span>
|
|
81
|
+
</div>
|
|
82
|
+
<div class="card-body">
|
|
83
|
+
<div id="divjoinmodules">
|
|
84
|
+
<form id="formjoin">
|
|
85
|
+
<div class="row" id="joinlist"></div>
|
|
86
|
+
</form>
|
|
87
|
+
</div>
|
|
88
|
+
<hr>
|
|
89
|
+
|
|
90
|
+
</div>
|
|
91
|
+
</div>
|
|
92
|
+
|
|
93
|
+
<div class="card mb-4 wow fadeIn card-query">
|
|
94
|
+
<div class="card-header font-weight-bold">
|
|
95
|
+
<span> Query</span>
|
|
96
|
+
</div>
|
|
97
|
+
<div class="card-body">
|
|
98
|
+
<textarea class="form-control" id="query" name="query"></textarea>
|
|
99
|
+
</div>
|
|
100
|
+
</div>
|
|
101
|
+
|
|
102
|
+
<!-- Card -->
|
|
103
|
+
<div class="card mb-4 wow fadeIn card-script" style="display: none">
|
|
104
|
+
<div class="card-header font-weight-bold">
|
|
105
|
+
<span> Files Content</span>
|
|
106
|
+
</div>
|
|
107
|
+
<div class="card-body">
|
|
108
|
+
<h5 class="card-title">Files Generator <span class="badge badge-danger"><small>Using EJS template
|
|
109
|
+
engine, Let it blank</small></span></h5>
|
|
110
|
+
|
|
111
|
+
<hr>
|
|
112
|
+
|
|
113
|
+
<ul class="nav nav-tabs" id="tabfiles" role="tablist">
|
|
114
|
+
<li class="nav-item">
|
|
115
|
+
<a class="nav-link active" data-toggle="tab" href="#tabrouter" role="tab"
|
|
116
|
+
aria-controls="router" aria-selected="true">Router</a>
|
|
117
|
+
</li>
|
|
118
|
+
<li class="nav-item">
|
|
119
|
+
<a class="nav-link " data-toggle="tab" href="#tabindex" role="tab" aria-controls="index"
|
|
120
|
+
aria-selected="true">Index</a>
|
|
121
|
+
</li>
|
|
122
|
+
<li class="nav-item">
|
|
123
|
+
<a class="nav-link" data-toggle="tab" href="#tabview" role="tab" aria-controls="view"
|
|
124
|
+
aria-selected="false">View</a>
|
|
125
|
+
</li>
|
|
126
|
+
</ul>
|
|
127
|
+
<div class="tab-content" id="mytabfiles">
|
|
128
|
+
<div class="tab-pane fade show active" id="tabrouter" role="tabpanel"
|
|
129
|
+
aria-labelledby="tab-router">
|
|
130
|
+
<br>
|
|
131
|
+
<div class="row">
|
|
132
|
+
<div class="col-md-9">
|
|
133
|
+
<div class="form-group ">
|
|
134
|
+
<label for="javascript">Router</label>
|
|
135
|
+
<div class="ide_editor" id="router"><%- datas.router%></div>
|
|
136
|
+
</div>
|
|
137
|
+
</div>
|
|
138
|
+
|
|
139
|
+
</div>
|
|
140
|
+
</div>
|
|
141
|
+
|
|
142
|
+
<div class="tab-pane fade" id="tabindex" role="tabpanel" aria-labelledby="index-tab">
|
|
143
|
+
<br>
|
|
144
|
+
<div class="row">
|
|
145
|
+
<div class="col-md-6">
|
|
146
|
+
<div class="form-group ">
|
|
147
|
+
<label for="index.ejs">index.ejs</label>
|
|
148
|
+
<div class="ide_editor" id="index_ejs"></div>
|
|
149
|
+
</div>
|
|
150
|
+
</div>
|
|
151
|
+
|
|
152
|
+
<div class="col-md-6">
|
|
153
|
+
<div class="form-group ">
|
|
154
|
+
<label for="indexcss_ejs">indexcss.ejs</label>
|
|
155
|
+
<div class="ide_editor_200" id="indexcss_ejs"><%- datas.indexcss_ejs%></div>
|
|
156
|
+
</div>
|
|
157
|
+
<div class="form-group ">
|
|
158
|
+
<label for="indexjs_ejs">indexjs.ejs</label>
|
|
159
|
+
<div class="ide_editor_200" id="indexjs_ejs"></div>
|
|
160
|
+
</div>
|
|
161
|
+
</div>
|
|
162
|
+
</div>
|
|
163
|
+
</div>
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
<div class="tab-pane fade" id="tabview" role="tabpanel" aria-labelledby="view-tab">
|
|
167
|
+
<br>
|
|
168
|
+
<div class="row">
|
|
169
|
+
<div class="col-md-9">
|
|
170
|
+
<div class="form-group ">
|
|
171
|
+
<label for="view_ejs">view.ejs</label>
|
|
172
|
+
<div class="ide_editor" id="view_ejs"></div>
|
|
173
|
+
</div>
|
|
174
|
+
</div>
|
|
175
|
+
<div class="col-md-6"></div>
|
|
176
|
+
</div>
|
|
177
|
+
</div>
|
|
178
|
+
</div>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
</div>
|
|
182
|
+
<!--/.Card-->
|
|
183
|
+
</div>
|
|
184
|
+
</div>
|
|
185
|
+
<!--Grid row-->
|
|
186
|
+
</section>
|
|
187
|
+
<!--Section: Post-->
|
|
188
|
+
|
|
189
|
+
<!-- Modal -->
|
|
190
|
+
<div class="modal fade" id="add_table" tabindex="-1" aria-labelledby="add_table" aria-hidden="true">
|
|
191
|
+
<div class="modal-dialog">
|
|
192
|
+
<div class="modal-content">
|
|
193
|
+
<div class="modal-header">
|
|
194
|
+
<h5 class="modal-title" id="modalviewlabel">Add View</h5>
|
|
195
|
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-times"></i>
|
|
196
|
+
</button>
|
|
197
|
+
</div>
|
|
198
|
+
<div class="modal-body">
|
|
199
|
+
<form id="modal-form" method="post" action="/zviews/addview">
|
|
200
|
+
<div class="form-group">
|
|
201
|
+
<label for="table">View Name</label>
|
|
202
|
+
<input type="text" class="form-control" id="modal-table" name="table" />
|
|
203
|
+
</div>
|
|
204
|
+
|
|
205
|
+
<div class="form-group">
|
|
206
|
+
<label for="route">Route</label>
|
|
207
|
+
<input type="text" class="form-control" id="modal-route" name="route" />
|
|
208
|
+
</div>
|
|
209
|
+
</form>
|
|
210
|
+
</div>
|
|
211
|
+
<div class="modal-footer">
|
|
212
|
+
<button type="button" class="btn btn-secondary" data-dismiss="modal"><i class="fa fa-times"></i>
|
|
213
|
+
Close</button>
|
|
214
|
+
<button type="button" id="modal-save" class="btn btn-primary"><i class="fa fa-paper-plane"></i>
|
|
215
|
+
Save</button>
|
|
216
|
+
</div>
|
|
217
|
+
</div>
|
|
218
|
+
</div>
|
|
219
|
+
</div>
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
<div class="modal fade" id="modal_add_field" tabindex="-1" aria-labelledby="add_table" aria-hidden="true">
|
|
223
|
+
<div class="modal-dialog">
|
|
224
|
+
<div class="modal-content">
|
|
225
|
+
<div class="modal-header">
|
|
226
|
+
<h5 class="modal-title">Add Field</h5>
|
|
227
|
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-times"></i>
|
|
228
|
+
</button>
|
|
229
|
+
</div>
|
|
230
|
+
<div class="modal-body">
|
|
231
|
+
|
|
232
|
+
<form id="modal-form" method="post" action="/<%- routeName%>">
|
|
233
|
+
<div class="form-group">
|
|
234
|
+
<label for="table">Name</label>
|
|
235
|
+
<div class="input-group">
|
|
236
|
+
<div class="input-group-prepend">
|
|
237
|
+
<select id="modal_position" class="form-control">
|
|
238
|
+
<option value="LEFT">Left</option>
|
|
239
|
+
<option value="RIGHT">Right</option>
|
|
240
|
+
<option value="ONE_COLUMN">One Column</option>
|
|
241
|
+
</select>
|
|
242
|
+
</div>
|
|
243
|
+
<input type="text" class="form-control" id="modal_name" placeholder="Field Name"
|
|
244
|
+
name="name" />
|
|
245
|
+
</div>
|
|
246
|
+
</div>
|
|
247
|
+
|
|
248
|
+
<div class="form-group">
|
|
249
|
+
<label for="route">Type</label>
|
|
250
|
+
<select class="form-control" id="modal_type">
|
|
251
|
+
<% for(var key in selects){%>
|
|
252
|
+
<option value="<%- key%>"><%- selects[key]%></option>
|
|
253
|
+
<%}%>
|
|
254
|
+
</select>
|
|
255
|
+
</div>
|
|
256
|
+
|
|
257
|
+
<div class="row divrelation" style="display:none">
|
|
258
|
+
<div class="col-md-6">
|
|
259
|
+
<div class="form-group">
|
|
260
|
+
<label for="route">Module Name</label>
|
|
261
|
+
<select class="form-control" id="relationtable"></select>
|
|
262
|
+
</div>
|
|
263
|
+
</div>
|
|
264
|
+
|
|
265
|
+
<div class="col-md-6 divrelationfield">
|
|
266
|
+
<div class="form-group ">
|
|
267
|
+
<label for="route">Label</label>
|
|
268
|
+
<select class="form-control" id="relationfield"></select>
|
|
269
|
+
</div>
|
|
270
|
+
</div>
|
|
271
|
+
|
|
272
|
+
<div class="col-md-12 divconcat">
|
|
273
|
+
<div class="form-group ">
|
|
274
|
+
<label for="route">Concat</label>
|
|
275
|
+
<input type="text" class="form-control" id="relationconcat"
|
|
276
|
+
placeholder='CONCAT(fullname, " (email) : ", email)'>
|
|
277
|
+
</div>
|
|
278
|
+
</div>
|
|
279
|
+
|
|
280
|
+
</div>
|
|
281
|
+
</form>
|
|
282
|
+
|
|
283
|
+
</div>
|
|
284
|
+
<div class="modal-footer">
|
|
285
|
+
<button type="button" class="btn btn-secondary" data-dismiss="modal"><i class="fa fa-times"></i>
|
|
286
|
+
Close</button>
|
|
287
|
+
<button type="button" id="modal-add" class="btn btn-primary"><i class="fa fa-plus"></i> Add</button>
|
|
288
|
+
</div>
|
|
289
|
+
</div>
|
|
290
|
+
</div>
|
|
291
|
+
</div>
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
<div class="modal fade" id="modal_setting" tabindex="-1" aria-labelledby="modal_setting" aria-hidden="true">
|
|
295
|
+
<div class="modal-dialog">
|
|
296
|
+
<div class="modal-content">
|
|
297
|
+
<div class="modal-header">
|
|
298
|
+
<h5 class="modal-title" id="modal_setting_label">Setting</h5>
|
|
299
|
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-times"></i>
|
|
300
|
+
</button>
|
|
301
|
+
</div>
|
|
302
|
+
<div class="modal-body">
|
|
303
|
+
<form id="modal-setting-form" method="post" action="/<%- routeName%>/save_setting">
|
|
304
|
+
<div id="body_content"></div>
|
|
305
|
+
</form>
|
|
306
|
+
</div>
|
|
307
|
+
<div class="modal-footer">
|
|
308
|
+
<button class="btn btn-danger text-white" id="delete_field" type="button"><i class="fa fa-trash"></i>
|
|
309
|
+
Delete</button>
|
|
310
|
+
<button type="button" class="btn btn-secondary" data-dismiss="modal"><i class="fa fa-times"></i>
|
|
311
|
+
Close</button>
|
|
312
|
+
<button type="button" id="modal-setting-save" class="btn btn-primary"><i class="fa fa-paper-plane"></i>
|
|
313
|
+
Save</button>
|
|
314
|
+
</div>
|
|
315
|
+
</div>
|
|
316
|
+
</div>
|
|
317
|
+
</div>
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
<div class="modal fade" id="modal_tab" tabindex="-1" aria-labelledby="modal_setting" aria-hidden="true">
|
|
321
|
+
<div class="modal-dialog">
|
|
322
|
+
<div class="modal-content">
|
|
323
|
+
<div class="modal-header">
|
|
324
|
+
<h5 class="modal-title" id="modal_setting_label">Tab</h5>
|
|
325
|
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-times"></i>
|
|
326
|
+
</button>
|
|
327
|
+
</div>
|
|
328
|
+
<div class="modal-body">
|
|
329
|
+
<form>
|
|
330
|
+
<input type="text" id="edittab" class="form-control">
|
|
331
|
+
</form>
|
|
332
|
+
</div>
|
|
333
|
+
<div class="modal-footer">
|
|
334
|
+
<button type="button" class="btn btn-secondary" data-dismiss="modal"><i class="fa fa-times"></i>
|
|
335
|
+
Close</button>
|
|
336
|
+
<button type="button" id="modal-tab-save" class="btn btn-primary"><i class="fa fa-paper-plane"></i>
|
|
337
|
+
Save</button>
|
|
338
|
+
</div>
|
|
339
|
+
</div>
|
|
340
|
+
</div>
|
|
341
|
+
</div>
|
|
342
|
+
|
|
343
|
+
<div class="modal fade" id="modal-file" tabindex="-1" aria-labelledby="add_table" aria-hidden="true">
|
|
344
|
+
<div class="modal-dialog">
|
|
345
|
+
<div class="modal-content">
|
|
346
|
+
<div class="modal-header">
|
|
347
|
+
<h5 class="modal-title">Import zfield File</h5>
|
|
348
|
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-times"></i>
|
|
349
|
+
</button>
|
|
350
|
+
</div>
|
|
351
|
+
<div class="modal-body">
|
|
352
|
+
<form id="modal-form-file" method="post" action="/zgenerator/import">
|
|
353
|
+
<input type="hidden" name="_csrf" value="<%= csrfToken %>">
|
|
354
|
+
<div class="form-group">
|
|
355
|
+
<label for="table">File</label>
|
|
356
|
+
<input type="file" class="form-control" id="import-file" name="import-file" required />
|
|
357
|
+
</div>
|
|
358
|
+
</form>
|
|
359
|
+
</div>
|
|
360
|
+
<div class="modal-footer">
|
|
361
|
+
<button type="button" class="btn btn-secondary" data-dismiss="modal"><i class="fa fa-times"></i>
|
|
362
|
+
Close</button>
|
|
363
|
+
<button type="submit" id="submit-import" class="btn btn-primary"><i class="fa fa-paper-plane"></i>
|
|
364
|
+
Submit</button>
|
|
365
|
+
</div>
|
|
366
|
+
</div>
|
|
367
|
+
</div>
|
|
368
|
+
</div>
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
<div class="modal fade" id="modal_container" tabindex="-1" aria-labelledby="add_container" aria-hidden="true">
|
|
372
|
+
<div class="modal-dialog">
|
|
373
|
+
<div class="modal-content">
|
|
374
|
+
<div class="modal-header">
|
|
375
|
+
<h5 class="modal-title">Add Container</h5>
|
|
376
|
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-times"></i>
|
|
377
|
+
</button>
|
|
378
|
+
</div>
|
|
379
|
+
<div class="modal-body">
|
|
380
|
+
<form>
|
|
381
|
+
<div class="form-group">
|
|
382
|
+
<label for="route">Column</label>
|
|
383
|
+
<select class="form-control form-select" id="column-count">
|
|
384
|
+
<option value="1">1</option>
|
|
385
|
+
<option value="2" selected>2</option>
|
|
386
|
+
<option value="3">3</option>
|
|
387
|
+
<option value="4">4</option>
|
|
388
|
+
<option value="6">6</option>
|
|
389
|
+
</select>
|
|
390
|
+
</div>
|
|
391
|
+
</form>
|
|
392
|
+
</div>
|
|
393
|
+
<div class="modal-footer">
|
|
394
|
+
<button type="button" class="btn btn-secondary btn-modal-container-close" data-dismiss="modal"><i
|
|
395
|
+
class="fa fa-times"></i> Close</button>
|
|
396
|
+
<button type="button" id="modal-container-save" class="btn btn-primary"><i
|
|
397
|
+
class="fa fa-plus-circle"></i> Add</button>
|
|
398
|
+
</div>
|
|
399
|
+
</div>
|
|
400
|
+
</div>
|
|
401
|
+
</div>
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
<div class="modal fade" id="modal_joins" tabindex="-1" aria-labelledby="add_container" aria-hidden="true">
|
|
405
|
+
<div class="modal-dialog">
|
|
406
|
+
<div class="modal-content">
|
|
407
|
+
<div class="modal-header">
|
|
408
|
+
<h5 class="modal-title">Join Module</h5>
|
|
409
|
+
<button type="button" class="close" id="closejoin" data-dismiss="modal" aria-label="Close"><i
|
|
410
|
+
class="fa fa-times"></i>
|
|
411
|
+
</button>
|
|
412
|
+
</div>
|
|
413
|
+
<div class="modal-body">
|
|
414
|
+
<form>
|
|
415
|
+
<div class="form-group">
|
|
416
|
+
<label for="route">Module</label>
|
|
417
|
+
<%- selectTable %>
|
|
418
|
+
</div>
|
|
419
|
+
</form>
|
|
420
|
+
</div>
|
|
421
|
+
<div class="modal-footer">
|
|
422
|
+
<button type="button" class="btn btn-secondary btn-modal-container-close" data-dismiss="modal"><i
|
|
423
|
+
class="fa fa-times"></i> Close</button>
|
|
424
|
+
<button type="button" id="modal-joins-save" class="btn btn-primary"><i class="fa fa-plus-circle"></i>
|
|
425
|
+
Add</button>
|
|
426
|
+
</div>
|
|
427
|
+
</div>
|
|
428
|
+
</div>
|
|
429
|
+
</div>
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
<!-- Modal insert data into container --->
|
|
433
|
+
<div class="modal fade" id="modal_container_into" tabindex="-1" aria-labelledby="modal_container_into"
|
|
434
|
+
aria-hidden="true">
|
|
435
|
+
<div class="modal-dialog">
|
|
436
|
+
<div class="modal-content">
|
|
437
|
+
<div class="modal-header">
|
|
438
|
+
<h5 class="modal-title" id="exampleModalLabel">Move <span class="badge badge-danger">fields </span> into
|
|
439
|
+
container</h5>
|
|
440
|
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-times"></i>
|
|
441
|
+
</button>
|
|
442
|
+
</div>
|
|
443
|
+
<div class="modal-body">
|
|
444
|
+
<form>
|
|
445
|
+
<div class="form-group">
|
|
446
|
+
<label for="route">Into Container</label>
|
|
447
|
+
<select class="form-control form-select" id="container-select">
|
|
448
|
+
</select>
|
|
449
|
+
</div>
|
|
450
|
+
</form>
|
|
451
|
+
</div>
|
|
452
|
+
<div class="modal-footer">
|
|
453
|
+
<button type="button" class="btn btn-secondary btncontainer-close" data-dismiss="modal"><i
|
|
454
|
+
class="fa fa-times"></i> Close</button>
|
|
455
|
+
<button type="button" id="moveintocontainer" class="btn btn-primary"><i class="fa fa-plus-circle"></i>
|
|
456
|
+
Move</button>
|
|
457
|
+
</div>
|
|
458
|
+
</div>
|
|
459
|
+
</div>
|
|
460
|
+
</div>
|
|
File without changes
|