Added "All" to Bandchooser at List

This commit is contained in:
int2001
2023-07-26 08:22:53 +00:00
parent 4717ca2252
commit e1003e07d7
3 changed files with 99 additions and 74 deletions

View File

@@ -6,6 +6,9 @@
</script>
<style>
.kHz::after {
content: " kHz";
}
.fresh{
-webkit-transition: all 15s ease;
-moz-transition: all 15s ease;
@@ -56,6 +59,7 @@
<label class="my-1 mr-2" for="band"><?php echo lang('gen_hamradio_band'); ?></label>
<select id="band" class="form-control-sm my-1 mr-sm-2" name="band">
<option value="All">All</option>
<?php foreach($bands as $key=>$bandgroup) {
echo '<optgroup label="' . strtoupper($key) . '">';
foreach($bandgroup as $band) {