column_settings_panel.inc.php
71.2 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
<?php defined('ABSPATH') or die('Access denied.'); ?>
<?php
/**
* Template for Column Settings widget
* @author Alexander Gilmanov
* @since 13.10.2016
*/
?>
<!-- .card .column-settings-panel -->
<div class="card column-settings-panel">
<div class="card-header ch-alt">
<h2><?php _e('Column settings', 'wpdatatables'); ?>: <span
class="label label-default bgm-gray wdtColumnOrigHeader">Position</span>
</h2>
<ul class="actions">
<li>
<button class="btn bgm-gray btn-icon waves-effect waves-circle waves-float"
title="<?php _e('Documentation', 'wpdatatables'); ?>" data-toggle="tooltip"
data-placement="bottom">
<i class="zmdi zmdi-help-outline"></i>
</button>
</li>
<li>
<button class="btn bgm-red btn-icon waves-effect waves-circle waves-float wdt-cancel-column-settings"
title="<?php _e('Cancel', 'wpdatatables'); ?>" data-toggle="tooltip" data-placement="bottom">
<i class="zmdi zmdi-close"></i>
</button>
</li>
<li>
<button class="btn bgm-green btn-icon waves-effect waves-circle waves-float wdt-column-apply"
title="<?php _e('Save', 'wpdatatables'); ?>" data-toggle="tooltip" data-placement="bottom">
<i class="zmdi zmdi-check"></i>
</button>
</li>
</ul>
</div>
<!-- /.card-header -->
<div class="card-body card-padding">
<div class="row wpDataTableContainer wpDataTables wpDataTablesWrapper">
<div role="tabpanel">
<ul class="tab-nav" role="tablist">
<li class="active column-display-settings-tab">
<a href="#column-display-settings" aria-controls="column-display-settings" role="tab"
data-toggle="tab"><?php _e('Display', 'wpdatatables'); ?></a>
</li>
<li class="column-data-settings-tab">
<a href="#column-data-settings" aria-controls="column-data-settings" role="tab"
data-toggle="tab"><?php _e('Data', 'wpdatatables'); ?></a>
</li>
<li class="column-sorting-settings-tab">
<a href="#column-sorting-settings" aria-controls="column-sorting-settings" role="tab"
data-toggle="tab"><?php _e('Sorting', 'wpdatatables'); ?></a>
</li>
<li class="column-filtering-settings-tab">
<a href="#column-filtering-settings" aria-controls="column-filtering-settings" role="tab"
data-toggle="tab"><?php _e('Filtering', 'wpdatatables'); ?></a>
</li>
<li class="column-editing-settings-tab">
<a href="#column-editing-settings" aria-controls="column-editing-settings" role="tab"
data-toggle="tab"><?php _e('Editing', 'wpdatatables'); ?></a>
</li>
<li class="column-conditional-formatting-settings-tab">
<a href="#column-conditional-formatting-settings"
aria-controls="column-conditional-formatting-settings" role="tab"
data-toggle="tab"><?php _e('Conditional formatting', 'wpdatatables'); ?></a>
</li>
</ul>
<!-- /ul .tab-nav -->
<div class="tab-content">
<!-- Column display settings -->
<div role="tabpanel" class="tab-pane active" id="column-display-settings">
<div class="row">
<div class="col-sm-6">
<h4 class="c-black m-b-20">
<?php _e('Displayed header', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="You can redefine the visible column header here, it will be shown instead of the orignial header."></i>
</h4>
<div class="form-group">
<div class="fg-line">
<input type="text" class="form-control input-sm" value="Column"
id="wdt-column-display-header">
</div>
</div>
</div>
<div class="col-sm-6">
<h4 class="c-black m-b-20">
<?php _e('Column position', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="You can redefine the position of the column here. Other columns will automatically re-position if you change it and click Apply."></i>
</h4>
<div class="form-group">
<div class="fg-line">
<input type="number" min="0" class="form-control input-sm" value="1"
id="wdt-column-position">
</div>
</div>
</div>
</div>
<!-- /.row -->
<div class="row">
<div class="col-sm-6">
<h4 class="c-black m-b-20">
<?php _e('Cell content prefix', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#column-cell-prefix-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="column-cell-prefix-hint">
<div class="popover-heading">
<?php _e('Cell content prefix', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/text_before.png"/>
</div>
<?php _e('Any text or symbol entered here will be shown before the value in every cell inside of this column. E.g.: $, €. Does not influence filtering and sorting. Convenient for prices, percentages, etc.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="form-group">
<div class="fg-line">
<input type="text" class="form-control input-sm"
id="wdt-column-display-text-before" value="">
</div>
</div>
</div>
<div class="col-sm-6">
<h4 class="c-black m-b-20">
<?php _e('Cell content suffix', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#column-cell-suffix-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="column-cell-suffix-hint">
<div class="popover-heading">
<?php _e('Cell content suffix', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/text_after.png"/>
</div>
<?php _e('Any text or symbol entered here will be shown after the value in every cell inside of this column. E.g.: %, pcs. Does not influence filtering and sorting. Convenient for prices, percentages, etc.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="form-group">
<div class="fg-line">
<input type="text" class="form-control input-sm"
id="wdt-column-display-text-after" value="">
</div>
</div>
</div>
</div>
<!-- /.row -->
<div class="row wdt-columns-responsive-block">
<div class="col-sm-6">
<h4 class="c-black m-b-20">
<?php _e('Hide on mobiles', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="Disabling this will make the column collapse to an expandable block when table viewed from mobile devices."></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-hide-column-on-mobiles"
class="ts-label"><?php _e('Collapse column on mobile devices', 'wpdatatables'); ?></label>
<input id="wdt-hide-column-on-mobiles" type="checkbox" hidden="hidden">
<label for="wdt-hide-column-on-mobiles" class="ts-helper"></label>
</div>
</div>
</div>
<div class="col-sm-6">
<h4 class="c-black m-b-20">
<?php _e('Hide on tablets', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="Disabling this will make the column collapse to an expandable block when table viewed from tablet devices."></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-hide-column-on-tablets"
class="ts-label"><?php _e('Collapse column on tablet devices', 'wpdatatables'); ?></label>
<input id="wdt-hide-column-on-tablets" type="checkbox" hidden="hidden">
<label for="wdt-hide-column-on-tablets" class="ts-helper"></label>
</div>
</div>
</div>
</div>
<!-- /.row -->
<!-- .row -->
<div class="row">
<div class="col-sm-6 cp-container">
<h4 class="c-black m-b-20">
<?php _e('CSS class(es)', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="Here you can define additional CSS classes, which will be applied to all the cells in this column and can be used for customizing the styling."></i>
</h4>
<div class="form-group">
<div class="fg-line">
<input type="text" class="form-control input-sm" id="wdt-column-css-class"
value="">
</div>
</div>
</div>
<div class="col-sm-6">
<h4 class="c-black m-b-20">
<?php _e('Visible on front-end', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="Disabling this will hide the column from table front-end. Please note that if column visibility is enabled in Table Tools block, front-end users will be able to access hidden columns as well."></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-column-visible"
class="ts-label"><?php _e('Show column in front-end', 'wpdatatables'); ?></label>
<input id="wdt-column-visible" type="checkbox" hidden="hidden">
<label for="wdt-column-visible" class="ts-helper"></label>
</div>
</div>
</div>
</div>
<!-- /.row -->
<!-- .row -->
<div class="row">
<div class="col-sm-6 wdt-column-width-block">
<h4 class="c-black m-b-20">
<?php _e('Column width', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="Input width for column( in percents with % or pixels without px). Leave a blank if you want to leave auto width."></i>
</h4>
<div class="form-group">
<div class="fg-line">
<input type="text" class="form-control input-sm" id="wdt-column-width">
</div>
</div>
</div>
<div class="col-sm-6 cp-container">
<h4 class="c-black m-b-20">
<?php _e('Column color', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#column-color-hint "
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="column-color-hint">
<div class="popover-heading">
<?php _e('Column color', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/column_color.png"/>
</div>
<?php _e('Here you can override the default color for the complete column', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="cp-container">
<div class="form-group">
<div class="fg-line dropdown">
<div id="cp"
class="input-group colorpicker-component colorpicker-element color-picker wpcolorpicker">
<input type="text" id="wdt-column-color" value=""
class="form-control cp-value cp-inside"/>
<span class="input-group-addon wpcolorpicker-icon"><i></i></span>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-6 wdt-group-column-block">
<h4 class="c-black m-b-20">
<?php _e('Group column', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#group-column"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="group-column">
<div class="popover-heading">
<?php _e('Group column', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/group_column.png"/>
</div>
<?php _e('If one column of your table contains similar values for many rows, maybe it makes sense to use it as a “group column”: it means that it will not be rendered as a column, but its values will be used to group the rows. Each group will be marked with one row with joined cells above, containing the group value.', 'wpdatatables'); ?>
<strong><?php _e('Group column will not work with MySQL tables with server-side processing enabled and with manual tables!', 'wpdatatables'); ?></strong>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-group-column"
class="ts-label"><?php _e('Toggle column grouping', 'wpdatatables'); ?></label>
<input id="wdt-group-column" type="checkbox" hidden="hidden">
<label for="wdt-group-column" class="ts-helper"></label>
</div>
</div>
</div>
</div>
<!-- /.row -->
</div>
<!-- /#column-display-settings -->
<!-- Column data settings -->
<div role="tabpanel" class="tab-pane" id="column-data-settings">
<div class="row">
<div class="col-sm-6">
<h4 class="c-black m-b-20">
<?php _e('Column type', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('You can redefine the column data type here. Affects sorting, filtering and display logic. For manually created tables this will change the column type in database as well, which may result in data loss.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="fg-line">
<div class="select">
<select class="selectpicker" id="wdt-column-type">
<option value="string"><?php _e('String', 'wpdatatables'); ?></option>
<option value="int"><?php _e('Integer', 'wpdatatables'); ?></option>
<option value="float"><?php _e('Float', 'wpdatatables'); ?></option>
<option value="date"><?php _e('Date', 'wpdatatables'); ?></option>
<option value="datetime"><?php _e('DateTime', 'wpdatatables'); ?></option>
<option value="time"><?php _e('Time', 'wpdatatables'); ?></option>
<option value="link"><?php _e('URL link', 'wpdatatables'); ?></option>
<option value="email"><?php _e('E-mail link', 'wpdatatables'); ?></option>
<option value="image"><?php _e('Image', 'wpdatatables'); ?></option>
<option disabled="disabled"
value="formula"><?php _e('Formula', 'wpdatatables'); ?></option>
</select>
</div>
</div>
</div>
</div>
<div class="col-sm-6 wdt-formula-column-block">
<h4 class="c-black m-b-20">
<?php _e('Formula for calculation', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('You can create a formula (calculated column) based on other numeric columns (Integer and Float)', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<button class="btn btn-primary wdt-open-formula-editor"><?php _e('Open formula editor', 'wpdatatables'); ?></button>
</div>
</div>
<div class="col-sm-6 wdt-numeric-column-block wdt-float-column-block">
<h4 class="c-black m-b-20">
<?php _e('Decimal places', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('You can redefine the visible decimal places for a float and formula columns here. If you leave this field empty amount of decimal places will be loaded from the settings page. 0 is available just for formula columns ', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="fg-line">
<input type="number" min="1" id="wdt-column-decimal-places"
class="form-control input-sm">
</div>
</div>
</div>
<div class="col-sm-6 wdt-numeric-column-block wdt-skip-thousands-separator-block">
<h4 class="c-black m-b-20">
<?php _e('Skip thousands separator', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Do not show thousands separator for this column (e.g. when showing years, IDs).', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-column-skip-thousands"
class="ts-label"><?php _e('Skip thousands separator', 'wpdatatables'); ?></label>
<input id="wdt-column-skip-thousands" type="checkbox" hidden="hidden">
<label for="wdt-column-skip-thousands" class="ts-helper"></label>
</div>
</div>
</div>
<div class="col-sm-6 wdt-possible-values-type-block">
<h4 class="c-black m-b-20">
<?php _e('Possible values for column', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="left"
title="<?php _e('Define the logic for fetching the possible values for this column for filtering, and for editing: read from table itself on page load (will always contain only the values that already exist in the table), hard-code the list, or configure a relation with a different wpDataTable (use values in this column as foreign key).', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="fg-line">
<div class="select">
<select class="selectpicker" id="wdt-column-values">
<option value="read"><?php _e('Read from table on page load', 'wpdatatables'); ?></option>
<option value="list"><?php _e('Define values list', 'wpdatatables'); ?></option>
<option value="foreignkey"><?php _e('Use values from another wpDataTable (foreign key)', 'wpdatatables'); ?></option>
</select>
</div>
</div>
</div>
</div>
<div class="col-sm-6 wdt-date-input-format-block">
<h4 class="c-black m-b-20">
<?php _e('Date input format', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Define date format which is used in the provided data source. Necessary for smooth reading of your dates.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="fg-line">
<div class="select">
<select class="selectpicker" id="wdt-date-input-format">
<option value=""></option>
<option value="d/m/Y">15/07/2005 (d/m/Y)</option>
<option value="m/d/Y">07/15/2005 (m/d/Y)</option>
<option value="d.m.Y">15.07.2005 (d.m.Y)</option>
<option value="m.d.Y">07.15.2005 (m.d.Y)</option>
<option value="d-m-Y">15-07-2005 (d-m-Y)</option>
<option value="m-d-Y">07-15-2005 (m-d-Y)</option>
<option value="d M Y">15 July 2005 (d Mon Y)</option>
</select>
</div>
</div>
</div>
</div>
</div>
<!-- /.row -->
<!-- .row -->
<div class="row wdt-possible-values-options-block">
<div class="col-sm-12 wdt-manual-list-enter-block">
<h4 class="c-black m-b-20">
<?php _e('Values list', 'wpdatatables'); ?>
<button class="btn btn-primary btn-xs waves-effect"
id="wdt-column-values-read-from-table"><?php _e('Read from table', 'wpdatatables'); ?></button>
<button class="btn btn-danger btn-xs waves-effect"
id="wdt-column-values-reset"><?php _e('Reset', 'wpdatatables'); ?></button>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Enter the possible values for this column in this list, separate by pressing ENTER or comma. Click "Read from table" to fetch the list from existing column values. Values will be used in selectbox and checkbox filters and editors for the column.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="fg-line">
<input class="form-control input-sm" value="" id="wdt-column-values-list"/>
</div>
</div>
</div>
<div class="col-sm-12 wdt-foreign-key-block" hidden="hidden">
<div class="col-sm-6 wdt-foreign-values p-l-0">
<h4 class="c-black m-b-20">
<?php _e('Use values from another wpDataTable', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="bottom"
title="<?php _e('Configure a relation with a separate wpDataTable: values in this column will be used as a foreign key, and replaced with values of a remote table column (e.g.: user name instead of user ID).', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<button class="btn btn-primary btn-sm waves-effect"
id="wdt-foreign-key-open"><?php _e('Configure relation...', 'wpdatatables'); ?></button>
</div>
</div>
<div class="col-sm-6 wdt-foreign-rule-display p-r-0">
<div class="form-group">
<div class="well">
<strong><?php _e('Table', 'wpdatatables'); ?>:</strong> <span id="wdt-connected-table-name"> -</span>,
<strong><?php _e('Show column', 'wpdatatables'); ?>:</strong> <span
id="wdt-connected-table-show-column"> -</span>,
<strong><?php _e('Value from column', 'wpdatatables'); ?>:</strong> <span
id="wdt-connected-table-value-column"> -</span>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<h4 class="c-black m-b-20">
<?php _e('Allow empty value', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Add an empty value to the possible values list, to allow empty editing and filtering inputs.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-column-values-add-empty"
class="ts-label"><?php _e('Add an empty value to the list', 'wpdatatables'); ?></label>
<input id="wdt-column-values-add-empty" type="checkbox" hidden="hidden">
<label for="wdt-column-values-add-empty" class="ts-helper"></label>
</div>
</div>
</div>
<div class="col-sm-6 wdt-possible-values-ajax-block">
<h4 class="c-black m-b-20">
<?php _e('Number of possible values to load', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Define here how many possible values per page will be loaded in selectbox filters and editor inputs. It is recommended not to be set to All if you have more than 50 possible values for this column. This option is not working when Cascade Filtering option from Powerful Filters add-on is enabled.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="fg-line">
<div class="select">
<select class="selectpicker" id="wdt-possible-values-ajax">
<option value="10">10</option>
<option value="25">25</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="-1"><?php _e('All', 'wpdatatables'); ?></option>
</select>
</div>
</div>
</div>
</div>
</div>
<!-- /.row -->
<div class="row wdt-numeric-column-block">
<div class="col-sm-6 wdt-column-calc-total-block">
<h4 class="c-black m-b-20">
<?php _e('Calculate total', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Enable this to show a total (sum) for all cells in this column in table footer. You can also show it somewhere outside of the table by pasting the shortcode below the switch.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-column-calc-total"
class="ts-label"><?php _e('Calculate a total for this column', 'wpdatatables'); ?></label>
<input id="wdt-column-calc-total" type="checkbox" hidden="hidden">
<label for="wdt-column-calc-total" class="ts-helper"></label>
</div>
<div class="m-t-5" id="wdt-column-calc-total-shortcode">
<button class="btn btn-primary btn-xs waves-effect p-5 wdt-copy-shortcode"
data-toggle="tooltip" data-placement="top"
title="<?php _e('Click to copy this shortcode. By placing this shortcode anywhere in your posts or pages you can see the total for this column.', 'wpdatatables'); ?>">
</button>
</div>
</div>
</div>
<div class="col-sm-6 wdt-column-calc-avg-block">
<h4 class="c-black m-b-20">
<?php _e('Calculate average', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Enable this to show an average value for all cells in this column in table footer. You can also show it somewhere outside of the table by pasting the shortcode below the switch.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-column-calc-avg"
class="ts-label"><?php _e('Calculate average for this column', 'wpdatatables'); ?></label>
<input id="wdt-column-calc-avg" type="checkbox" hidden="hidden">
<label for="wdt-column-calc-avg" class="ts-helper"></label>
</div>
<div class="m-t-5" id="wdt-column-calc-avg-shortcode">
<button class="btn btn-primary btn-xs waves-effect p-5 wdt-copy-shortcode"
data-toggle="tooltip" data-placement="top"
title="<?php _e('Click to copy this shortcode. By placing this shortcode anywhere in your posts or pages you can see the average for this column.', 'wpdatatables'); ?>">
</button>
</div>
</div>
</div>
<div class="col-sm-6 wdt-column-calc-min-block">
<h4 class="c-black m-b-20">
<?php _e('Calculate MIN value', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Enable this to show a minimum value within all cells in this column in table footer. You can also show it somewhere outside of the table by pasting the shortcode below the switch.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-column-calc-min"
class="ts-label"><?php _e('Find a minimum value for this column', 'wpdatatables'); ?></label>
<input id="wdt-column-calc-min" type="checkbox" hidden="hidden">
<label for="wdt-column-calc-min" class="ts-helper"></label>
</div>
<div class="m-t-5" id="wdt-column-calc-min-shortcode">
<button class="btn btn-primary btn-xs waves-effect p-5 wdt-copy-shortcode"
data-toggle="tooltip" data-placement="top"
title="<?php _e('Click to copy this shortcode. By placing this shortcode anywhere in your posts or pages you can see the minimum for this column.', 'wpdatatables'); ?>">
</button>
</div>
</div>
</div>
<div class="col-sm-6 wdt-column-calc-max-block">
<h4 class="c-black m-b-20">
<?php _e('Calculate MAX value', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Enable this to show a maximum value within all cells in this column in table footer. You can also show it somewhere outside of the table by pasting the shortcode below the switch.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-column-calc-max"
class="ts-label"><?php _e('Find a maximum value for this column', 'wpdatatables'); ?></label>
<input id="wdt-column-calc-max" type="checkbox" hidden="hidden">
<label for="wdt-column-calc-max" class="ts-helper"></label>
</div>
<div class="m-t-5" id="wdt-column-calc-max-shortcode">
<button class="btn btn-primary btn-xs waves-effect p-5 wdt-copy-shortcode"
data-toggle="tooltip" data-placement="top"
title="<?php _e('Click to copy this shortcode. By placing this shortcode anywhere in your posts or pages you can see the maximum for this column.', 'wpdatatables'); ?>">
</button>
</div>
</div>
</div>
</div>
<!-- /.row -->
<div class="row wdt-link-column-block">
<div class="col-sm-6 wdt-link-target-attribute-block">
<h4 class="c-black m-b-20">
<?php _e('URL target attribute', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Set how to open URL Target', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-link-target-attribute"
class="ts-label"><?php _e('Open link in the new tab', 'wpdatatables'); ?></label>
<input id="wdt-link-target-attribute" type="checkbox" hidden="hidden">
<label for="wdt-link-target-attribute" class="ts-helper"></label>
</div>
</div>
</div>
<div class="col-sm-6 wdt-link-button-attribute-block">
<h4 class="c-black m-b-20">
<?php _e('Show link as a button', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('The link will be shown as a button ', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-link-button-attribute"
class="ts-label"><?php _e('Set the link to appear as a button', 'wpdatatables'); ?></label>
<input id="wdt-link-button-attribute" type="checkbox" hidden="hidden">
<label for="wdt-link-button-attribute" class="ts-helper"></label>
</div>
</div>
</div>
<div class="col-sm-6 wdt-link-button-label-block" >
<h4 class="c-black m-b-20">
<?php _e('Button text', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="You can set the button display text"></i>
</h4>
<div class="form-group">
<div class="fg-line">
<input type="text" class="form-control input-sm" value=""
id="wdt-link-button-label">
</div>
</div>
</div>
<div class="col-sm-6 wdt-link-button-class-block">
<h4 class="c-black m-b-20">
<?php _e('Button class', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="You can set the button class"></i>
</h4>
<div class="form-group">
<div class="fg-line">
<input type="text" class="form-control input-sm" value=""
id="wdt-link-button-class">
</div>
</div>
</div>
</div>
<!-- /.row -->
</div>
<!--/#column-data-settings -->
<!-- Column sorting settings -->
<div role="tabpanel" class="tab-pane" id="column-sorting-settings">
<!-- .row -->
<div class="row">
<div class="col-sm-6">
<h4 class="c-black m-b-20">
<?php _e('Allow sorting', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Disable this to disallow sorting for this column.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-column-allow-sorting"
class="ts-label"><?php _e('Allow sorting for this column', 'wpdatatables'); ?></label>
<input id="wdt-column-allow-sorting" type="checkbox" hidden="hidden">
<label for="wdt-column-allow-sorting" class="ts-helper"></label>
</div>
</div>
</div>
<div class="col-sm-6 wdt-column-default-sorting-block">
<h4 class="c-black m-b-20">
<?php _e('Use as default sorting column', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Sort table by this column on load', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-column-default-sort"
class="ts-label"><?php _e('Sort table by this column on load', 'wpdatatables'); ?></label>
<input id="wdt-column-default-sort" type="checkbox" hidden="hidden">
<label for="wdt-column-default-sort" class="ts-helper"></label>
</div>
</div>
</div>
</div>
<!-- /.row -->
<!-- .row -->
<div class="row">
<div class="col-sm-6 wdt-column-default-sorting-direction-block">
<h4 class="c-black m-b-20">
<?php _e('Default sorting direction', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Choose whether to sort ascending or descending by default.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="fg-line">
<div class="select">
<select class="selectpicker" id="wdt-column-default-sorting-direction">
<option value="1"><?php _e('Ascending', 'wpdatatables'); ?></option>
<option value="2"><?php _e('Descending', 'wpdatatables'); ?></option>
</select>
</div>
</div>
</div>
</div>
</div>
<!-- /.row -->
</div>
<!--/#column-sorting-settings -->
<!-- Column filtering settings -->
<div role="tabpanel" class="tab-pane" id="column-filtering-settings">
<div class="row">
<div class="col-sm-6 wdt-column-enable-filter-block">
<h4 class="c-black m-b-20">
<?php _e('Add a filter for this column', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#column-filter-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="column-filter-hint">
<div class="popover-heading">
<?php _e('Enable filtering for column', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/column_filter.png"/>
</div>
<?php _e('Enabling this switch will add a filter for this column. Disable to remove the filter for this column.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-column-enable-filter"
class="ts-label"><?php _e('Allow filtering', 'wpdatatables'); ?></label>
<input id="wdt-column-enable-filter" type="checkbox" hidden="hidden">
<label for="wdt-column-enable-filter" class="ts-helper"></label>
</div>
</div>
</div>
<div class="col-sm-6 wdt-filtering-enabled-block">
<h4 class="c-black m-b-20">
<?php _e('Filter type', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('You can redefine the filter type here, it will affect the filtering logic.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="fg-line">
<div class="select">
<select class="selectpicker" id="wdt-column-filter-type">
<option value="text"><?php _e('Text', 'wpdatatables'); ?></option>
<option value="number"><?php _e('Number', 'wpdatatables'); ?></option>
<option value="number-range"><?php _e('Number range', 'wpdatatables'); ?></option>
<option value="date-range"><?php _e('Date range', 'wpdatatables'); ?></option>
<option value="datetime-range"><?php _e('DateTime range', 'wpdatatables'); ?></option>
<option value="time-range"><?php _e('Time range', 'wpdatatables'); ?></option>
<option value="select"><?php _e('Selectbox', 'wpdatatables'); ?></option>
<option value="multiselect"><?php _e('Multiselectbox', 'wpdatatables'); ?></option>
<option value="checkbox"><?php _e('Checkbox', 'wpdatatables'); ?></option>
</select>
</div>
</div>
</div>
</div>
</div>
<!-- /.row -->
<!-- .row -->
<div class="row">
<div class="col-sm-6 wdt-filtering-enabled-block">
<h4 class="c-black m-b-20">
<?php _e('Filter label', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-popover-content="#filter-label-hint"
data-toggle="html-popover" data-trigger="hover" data-placement="right"></i>
</h4>
<!-- Hidden popover with image hint -->
<div class="hidden" id="filter-label-hint">
<div class="popover-heading">
<?php _e('Custom filter label', 'wpdatatables'); ?>
</div>
<div class="popover-body">
<div class="thumbnail">
<img src="<?php echo WDT_ASSETS_PATH ?>img/hint-pictures/custom_filter_label.png"/>
</div>
<?php _e('You can change the filter label (placeholder) for this column here, if you would like to show some custom text instead of default.', 'wpdatatables'); ?>
</div>
</div>
<!-- /Hidden popover with image hint -->
<div class="form-group">
<div class="fg-line">
<input type="text" class="form-control input-sm" value=""
id="wdt-column-filter-label">
</div>
</div>
</div>
<div class="col-sm-6 wdt-filtering-enabled-block wdt-exact-filtering-block">
<h4 class="c-black m-b-20">
<?php _e('Exact filtering', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Enable exact search to use exact match logic for filtering, disable to allow partial match.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-column-exact-filtering"
class="ts-label"><?php _e('Enable exact filtering', 'wpdatatables'); ?></label>
<input id="wdt-column-exact-filtering" type="checkbox" hidden="hidden">
<label for="wdt-column-exact-filtering" class="ts-helper"></label>
</div>
</div>
</div>
</div>
<!--/ .row -->
<!-- .row -->
<div class="row">
<div class="col-sm-6 wdt-filtering-enabled-block">
<h4 class="c-black m-b-20">
<?php _e('Predefined value(s)', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Define value(s) that will be set as default pre-defined filter value(s) on page load.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group wdt-filter-default-value-block">
<div class="fg-line">
<input type="text" class="form-control input-sm" value=""
id="wdt-filter-default-value">
</div>
</div>
<div class="form-group col-sm-6 p-l-0 wdt-filter-default-value-from-block"
hidden="hidden">
<div class="fg-line">
<input type="text" class="form-control input-sm" value=""
id="wdt-filter-default-value-from" placeholder="From">
</div>
</div>
<div class="form-group col-sm-6 p-r-0 wdt-filter-default-value-to-block"
hidden="hidden">
<div class="fg-line">
<input type="text" class="form-control input-sm" value=""
id="wdt-filter-default-value-to" placeholder="To">
</div>
</div>
<div class="form-group wdt-filter-default-value-selectpicker-block" hidden="hidden">
<div class="fg-line">
<div class="select">
<select class="selectpicker" id="wdt-filter-default-value-selectpicker" data-live-search="true">
</select>
</div>
</div>
</div>
</div>
<div class="col-sm-6 wdt-filtering-enabled-block wdt-checkboxes-in-modal-block">
<h4 class="c-black m-b-20">
<?php _e('Render in modal', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Render checkboxes in modal.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-checkboxes-in-modal"
class="ts-label"><?php _e('Render checkboxes in modal', 'wpdatatables'); ?></label>
<input id="wdt-checkboxes-in-modal" type="checkbox" hidden="hidden">
<label for="wdt-checkboxes-in-modal" class="ts-helper"></label>
</div>
</div>
</div>
</div>
<!--/ .row -->
</div>
<!--/#column-filtering-settings -->
<!-- Column editing settings -->
<div role="tabpanel" class="tab-pane" id="column-editing-settings">
<div class="row">
<div class="col-sm-6">
<h4 class="c-black m-b-20">
<?php _e('Editor input type', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Choose which kind of editor input to use for this column.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="fg-line">
<div class="select">
<select class="selectpicker" id="wdt-column-editor-input-type">
<option value="none"><?php _e('None', 'wpdatatables'); ?></option>
<option value="text"><?php _e('One-line edit', 'wpdatatables'); ?></option>
<option value="textarea"><?php _e('Multi-line edit', 'wpdatatables'); ?></option>
<option value="mce-editor"><?php _e('HTML editor', 'wpdatatables'); ?></option>
<option value="selectbox"><?php _e('Single-value selectbox', 'wpdatatables'); ?></option>
<option value="multi-selectbox"><?php _e('Multi-value selectbox', 'wpdatatables'); ?></option>
<option value="date"><?php _e('Date', 'wpdatatables'); ?></option>
<option value="datetime"><?php _e('Datetime', 'wpdatatables'); ?></option>
<option value="time"><?php _e('Time', 'wpdatatables'); ?></option>
<option value="link"><?php _e('URL link', 'wpdatatables'); ?></option>
<option value="email"><?php _e('E-mail link', 'wpdatatables'); ?></option>
<option value="attachment"><?php _e('Attachment', 'wpdatatables'); ?></option>
</select>
</div>
</div>
</div>
</div>
<div class="col-sm-6 wdt-editing-enabled-block">
<h4 class="c-black m-b-20">
<?php _e('Column cannot be empty', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('Enable to make this column mandatory. Users will see a warning when trying to save with empty input.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group">
<div class="toggle-switch" data-ts-color="blue">
<label for="wdt-column-not-null"
class="ts-label"><?php _e('Cannot be empty', 'wpdatatables'); ?></label>
<input id="wdt-column-not-null" type="checkbox" hidden="hidden">
<label for="wdt-column-not-null" class="ts-helper"></label>
</div>
</div>
</div>
</div>
<!-- /.row -->
<div class="row">
<div class="col-sm-6 wdt-editing-enabled-block">
<h4 class="c-black m-b-20">
<?php _e('Predefined value(s)', 'wpdatatables'); ?>
<i class="zmdi zmdi-help-outline" data-toggle="tooltip" data-placement="right"
title="<?php _e('If you would like to have some values pre-defined in editors (i.e. default editor values) please enter these here.', 'wpdatatables'); ?>"></i>
</h4>
<div class="form-group wdt-editing-default-value-block">
<div class="fg-line">
<input type="text" class="form-control input-sm" value=""
id="wdt-editing-default-value">
</div>
</div>
<div class="form-group wdt-editing-default-value-selectpicker-block" hidden="hidden">
<div class="fg-line">
<div class="select">
<select class="selectpicker" id="wdt-editing-default-value-selectpicker" data-live-search="true">
</select>
</div>
</div>
</div>
</div>
</div>
<!--/ .row -->
</div>
<!--/#column-editing-settings -->
<!-- Column conditional formatting settings -->
<div role="tabpanel" class="tab-pane" id="column-conditional-formatting-settings">
<div class="wdt-conditional-formatting-rules-container">
</div>
<!-- /.row -->
<div class="row">
<div class="col-sm-12">
<button class="btn btn-primary waves-effect pull-right wdt-column-add-conditional-formatting-rule">
<i class="zmdi zmdi-plus-circle"></i> <?php _e('Add rule', 'wpdatatables'); ?>
</button>
</div>
</div>
</div>
<!--/#column-conditional-formatting-settings -->
</div>
<!-- /.tab-content -->
</div>
<!--/.tabpanel -->
</div>
<!-- /.wpDataTableContainer -->
<div class="row">
<div class="col-md-12 p-l-20 p-r-20">
<button class="btn btn-default btn-icon-text waves-effect wdt-documentation"
data-doc-page="column_settings">
<i class="zmdi zmdi-help-outline"></i> <?php _e('Documentation', 'wpdatatables'); ?>
</button>
<div class="pull-right">
<button class="btn btn-danger btn-icon-text waves-effect wdt-cancel-column-settings">
<i class="zmdi zmdi-close"></i> <?php _e('Cancel', 'wpdatatables'); ?>
</button>
<button class="btn btn-success btn-icon-text waves-effect wdt-column-apply">
<i class="zmdi zmdi-check wdt-apply"></i> <?php _e('Apply', 'wpdatatables'); ?>
</button>
</div>
</div>
<!-- /.col-md-12.p-l-20.p-r-20 -->
</div>
<!-- /.row -->
</div>
<!-- /.card-body -->
</div>
<!-- /.card .column-settings-panel -->