added hint to band selector about band validity

This commit is contained in:
DB4SCW
2024-08-26 07:43:21 +00:00
parent 19205edddd
commit 2a906f52ba
2 changed files with 3 additions and 0 deletions

View File

@@ -5,6 +5,7 @@
var lang_export_reg1testedi_select_date_range = '<?= __("Select Date Range") ?>';
var lang_export_reg1testedi_select_band = '<?= __("Select Band") ?>';
var lang_export_reg1testedi_no_contests_for_stationlocation = '<?= __("No contests were found for this station location!") ?>';
var lang_export_reg1testedi_bandhint = '<?= __("Bands below 50Mhz are not valid for the EDI REG1TEST format and will be invalid.") ?>';
</script>
<div class="container">

View File

@@ -115,6 +115,8 @@ function loadContestBands() {
.attr("value",value.band)
.text(value.band));
});
$(".contestbands").append('<small id="band_hint" class="form-text text-muted col-md-2">' + lang_export_reg1testedi_bandhint + '</small>');
}
});
}