diff --git a/application/views/bandmap/list.php b/application/views/bandmap/list.php index d7507dd6b..97f1f51a1 100644 --- a/application/views/bandmap/list.php +++ b/application/views/bandmap/list.php @@ -76,9 +76,10 @@ = __("DXCC-Status"); ?> = __("All"); ?> + = __("Not worked"); ?> = __("Worked"); ?> = __("Confirmed"); ?> - = __("Not Confirmed"); ?> + = __("Worked, not Confirmed"); ?> = __("Spots de"); ?> diff --git a/assets/js/sections/bandmap_list.js b/assets/js/sections/bandmap_list.js index ec2bc9508..73535a916 100644 --- a/assets/js/sections/bandmap_list.js +++ b/assets/js/sections/bandmap_list.js @@ -53,9 +53,10 @@ $(function() { if (dxspots.length>0) { dxspots.sort(SortByQrg); dxspots.forEach((single) => { + if ((cwn == 'notwkd') && ((single.worked_dxcc))) { return; } if ((cwn == 'wkd') && (!(single.worked_dxcc))) { return; } if ((cwn == 'cnf') && (!(single.cnfmd_dxcc))) { return; } - if ((cwn == 'ucnf') && ((single.cnfmd_dxcc))) { return; } + if ((cwn == 'ucnf') && (!(single.worked_dxcc) || single.cnfmd_dxcc)) { return; } spots2render++; var data=[]; if (single.cnfmd_dxcc) {