@@ -18,7 +18,8 @@ <h2 class="title">Welcome back!</h2>
18
18
< th class ="text-center noBorder " style ="padding-right:25px !important "> Name</ th >
19
19
< th class ="text-center noBorder url-th " style ="padding-right:25px !important "> URL</ th >
20
20
< th class ="text-center noBorder " style ="padding-right:25px !important "> Division</ th >
21
- < th class ="text-center noBorder " style ="padding-right:25px !important "> Candidate URLs</ th >
21
+ < th class ="text-center noBorder " style ="padding-right:25px !important "> Delta URLs</ th >
22
+ < th class ="text-center noBorder " style ="padding-right:25px !important "> Curated URLs</ th >
22
23
< th class ="text-center noBorder " style ="padding-right:25px !important "> Workflow Status</ th >
23
24
< th class ="text-center noBorder " style ="padding-right:25px !important "> Curator</ th >
24
25
< th class ="text-center noBorder " style ="padding-right:25px !important "> Connector Type</ th >
@@ -31,6 +32,7 @@ <h2 class="title">Welcome back!</h2>
31
32
< td class ="filterRowBottom url-td "> < input class ="table_filter_row_input textBoxStyling " type ="text " id ="urlFilter " placeholder ="URL " /> </ td >
32
33
< td class ="filterRowBottom "> < input class ="table_filter_row_input textBoxStyling " type ="text " id ="divisionFilter " placeholder ="Division " /> </ td >
33
34
< td class ="filterRowBottom "> </ td >
35
+ < td class ="filterRowBottom "> </ td >
34
36
< td class ="filterRowBottom "> < select id ="collection-dropdown-4 " class ="select-dropdown selectStyling ">
35
37
< option value =""> SELECT</ option >
36
38
{% for choice in workflow_status_choices %}
@@ -68,9 +70,14 @@ <h2 class="title">Welcome back!</h2>
68
70
</ td >
69
71
< td class ="whiteText noBorder "> {{ collection.get_division_display }}</ td >
70
72
< td class ="noBorder centerAlign ">
71
- < a href =" {% if collection.num_candidate_urls > 0 %} {% url 'sde_collections:candidate_urls' collection.pk %} {% endif %} "
72
- class ="btn btn-sm {% if collection.num_candidate_urls > 0 %}btn-primary {% else %}disabled{% endif %}candidateCount "
73
- role ="button "> {{ collection.num_candidate_urls|intcomma }}</ a >
73
+ < a href =" {% if collection.delta_urls_count > 0 %} {% url 'sde_collections:delta_urls' collection.pk %} {% endif %} "
74
+ class ="btn btn-sm {% if collection.delta_urls_count > 0 %}btn-primary {% else %}disabled{% endif %}deltaCount "
75
+ role ="button "> {{ collection.delta_urls_count|intcomma }}</ a >
76
+ </ td >
77
+ < td class ="noBorder centerAlign ">
78
+ < a href =" {% if collection.included_curated_urls_count > 0 %} {% url 'sde_collections:delta_urls' collection.pk %} {% endif %} "
79
+ class ="btn btn-sm {% if collection.included_curated_urls_count > 0 %}btn-primary {% else %}disabled{% endif %}curatedCount "
80
+ role ="button "> {{ collection.included_curated_urls_count|intcomma }}</ a >
74
81
</ td >
75
82
< td class ="noBorder ">
76
83
< div class ="dropdown workflow_status_dropdown "
0 commit comments