pull/2608/head
HB9HIL 2023-10-23 22:29:47 +02:00
rodzic fae3358fc9
commit 45d004f302
1 zmienionych plików z 16 dodań i 16 usunięć

Wyświetl plik

@ -27,6 +27,22 @@
</select>
</div>
<div class="form-group col-md-3">
<label for="mode"><?php echo lang('gen_hamradio_mode'); ?></label>
<select id="mode" name="mode" class="form-control custom-select">
<option value="All"><?php echo lang('general_word_all'); ?></option>
<?php
foreach($modes->result() as $mode){
if ($mode->submode == null) {
echo '<option value="' . $mode->mode . '">'. $mode->mode . '</option>'."\n";
} else {
echo '<option value="' . $mode->submode . '">' . $mode->submode . '</option>'."\n";
}
}
?>
</select>
</div>
<div class="form-group col-md-4">
<label for="dxcc_id"><?php echo lang('gen_hamradio_dxcc'); ?></label>
<select class="custom-select" id="dxcc_id" name="dxcc_id">
@ -43,22 +59,6 @@
</select>
</div>
<div class="form-group col-md-3">
<label for="mode"><?php echo lang('gen_hamradio_mode'); ?></label>
<select id="mode" name="mode" class="form-control custom-select">
<option value="All"><?php echo lang('general_word_all'); ?></option>
<?php
foreach($modes->result() as $mode){
if ($mode->submode == null) {
echo '<option value="' . $mode->mode . '">'. $mode->mode . '</option>'."\n";
} else {
echo '<option value="' . $mode->submode . '">' . $mode->submode . '</option>'."\n";
}
}
?>
</select>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-3">