File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
templates/sde_collections Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -253,6 +253,7 @@ function initializeDataTable() {
253
253
columns : [
254
254
getURLColumn ( ) ,
255
255
getExcludedColumn ( true_icon , false_icon ) ,
256
+ getDeletedColumn ( true_icon , false_icon ) ,
256
257
getScrapedTitleColumn ( ) ,
257
258
getGeneratedTitleColumn ( ) ,
258
259
getDocumentTypeColumn ( ) ,
@@ -1209,6 +1210,17 @@ function getCuratedURLColumn() {
1209
1210
} ;
1210
1211
}
1211
1212
1213
+ function getDeletedColumn ( true_icon , false_icon ) {
1214
+ return {
1215
+ data : "to_delete" ,
1216
+ width : "10%" ,
1217
+ class : "col-1 text-center" ,
1218
+ render : function ( data , type , row ) {
1219
+ return data === true ? true_icon : false_icon ;
1220
+ } ,
1221
+ } ;
1222
+ }
1223
+
1212
1224
function getScrapedTitleColumn ( ) {
1213
1225
return {
1214
1226
data : "scraped_title" ,
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ <h3 class="whiteText deltaTitle">
72
72
< tr >
73
73
< th scope ="col " class ="text-center col-1 "> < div class ="header-title "> URL</ div > </ th >
74
74
< th scope ="col " class ="text-center col-1 "> < div class ="header-title "> Exclude</ div > </ th >
75
+ < th class ="text-center col-1 " scope ="col "> < div class ="header-title "> Deleted</ div > </ th >
75
76
< th scope ="col " class ="text-center col-1 "> < div class ="header-title "> Scraped Title</ div > </ th >
76
77
< th scope ="col " class ="text-center col-1 "> < div class ="header-title "> New Title</ div > </ th >
77
78
< th scope ="col " class ="text-center col-1 "> < div class ="header-title "> Document Type</ div > </ th >
@@ -94,6 +95,10 @@ <h3 class="whiteText deltaTitle">
94
95
< option value ="false "> FALSE</ option >
95
96
< option value ="true "> TRUE</ option >
96
97
</ select > </ td >
98
+ < td > < select class ="dropdown-1 select-dropdown selectStyling "> < option value =""> SELECT</ option >
99
+ < option value ="false "> FALSE</ option >
100
+ < option value ="true "> TRUE</ option >
101
+ </ select > </ td >
97
102
< td > < input type ="text " class ="table_filter_row_input textBoxStyling " id ="deltaScrapedTitleFilter " placeholder ="Scraped Title " /> </ td >
98
103
< td > < input type ="text " class ="table_filter_row_input textBoxStyling " id ="deltaNewTitleFilter " placeholder ="New Title " /> </ td >
99
104
< td > < select class ="dropdown-4 select-dropdown selectStyling "> < option value =""> SELECT</ option >
You can’t perform that action at this time.
0 commit comments