|
|
|
|
@@ -61,372 +61,377 @@ $options = json_decode($options);
|
|
|
|
|
<?php } ?>
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
|
|
<form id="searchForm" name="searchForm" action="<?php echo base_url() . "index.php/logbookadvanced/search"; ?>" method="post">
|
|
|
|
|
<input type="hidden" id="dupes" name="dupes" value="">
|
|
|
|
|
<div class="filterbody collapse">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="dateFrom"><?php echo lang('filter_general_from') . ": " ?></label>
|
|
|
|
|
<input name="dateFrom" id="dateFrom" type="date" class="form-control form-control-sm w-auto">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="dateTo"><?php echo lang('filter_general_to') . ": " ?></label>
|
|
|
|
|
<input name="dateTo" id="dateTo" type="date" class="form-control form-control-sm w-auto">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="dx"><?php echo lang('gen_hamradio_dx'); ?></label>
|
|
|
|
|
<input type="text" name="dx" id="dx" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="dxcc"><?php echo lang('gen_hamradio_dxcc'); ?></label>
|
|
|
|
|
<select class="form-select form-select-sm" id="dxcc" name="dxcc">
|
|
|
|
|
<option value="">-</option>
|
|
|
|
|
<option value="0"><?php echo lang('filter_general_none'); ?></option>
|
|
|
|
|
<?php
|
|
|
|
|
foreach ($dxccarray as $dxcc) {
|
|
|
|
|
echo '<option value=' . $dxcc->adif;
|
|
|
|
|
echo '>' . $dxcc->prefix . ' - ' . ucwords(strtolower($dxcc->name), "- (/");
|
|
|
|
|
if ($dxcc->Enddate != null) {
|
|
|
|
|
echo ' - (Deleted DXCC)';
|
|
|
|
|
}
|
|
|
|
|
echo '</option>';
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="iota"><?php echo lang('gen_hamradio_iota'); ?></label>
|
|
|
|
|
<select class="form-select form-select-sm" id="iota" name="iota">
|
|
|
|
|
<option value="">-</option>
|
|
|
|
|
<?php
|
|
|
|
|
foreach ($iotaarray as $iota) {
|
|
|
|
|
echo '<option value=' . $iota->tag;
|
|
|
|
|
echo '>' . $iota->tag . ' - ' . $iota->name . '</option>';
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="state"><?php echo lang('gen_hamradio_state'); ?></label>
|
|
|
|
|
<input type="text" name="state" id="state" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="gridsquare"><?php echo lang('gen_hamradio_gridsquare'); ?></label>
|
|
|
|
|
<input type="text" name="gridsquare" id="gridsquare" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="mode"><?php echo lang('gen_hamradio_mode'); ?></label>
|
|
|
|
|
<select id="mode" name="mode" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php
|
|
|
|
|
foreach ($modes as $modeId => $mode) {
|
|
|
|
|
?><option value="<?php echo htmlspecialchars($mode); ?>"><?php echo htmlspecialchars($mode); ?></option><?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="band"><?php echo lang('gen_hamradio_band'); ?></label>
|
|
|
|
|
<select id="band" name="band" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php
|
|
|
|
|
foreach ($bands as $band) {
|
|
|
|
|
?><option value="<?php echo htmlentities($band); ?>"><?php echo htmlspecialchars($band); ?></option><?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div hidden class="sats_dropdown mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="sats"><?php echo lang('general_word_satellite'); ?></label>
|
|
|
|
|
<select class="form-select form-select-sm" id="sats">
|
|
|
|
|
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php foreach ($sats as $sat) {
|
|
|
|
|
echo '<option value="' . htmlentities($sat) . '"' . '>' . htmlentities($sat) . '</option>' . "\n";
|
|
|
|
|
} ?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div hidden class="orbits_dropdown mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="orbits"><?php echo lang('general_word_orbit'); ?></label>
|
|
|
|
|
<select class="form-select form-select-sm" id="orbits">
|
|
|
|
|
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php foreach ($orbits as $orbit) {
|
|
|
|
|
echo '<option value="' . htmlentities($orbit) . '"' . '>' . htmlentities($orbit) . '</option>' . "\n";
|
|
|
|
|
} ?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="selectPropagation"><?php echo lang('filter_general_propagation'); ?></label>
|
|
|
|
|
<select id="selectPropagation" name="selectPropagation" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="AS">Aircraft Scatter</option>
|
|
|
|
|
<option value="AUR">Aurora</option>
|
|
|
|
|
<option value="AUE">Aurora-E</option>
|
|
|
|
|
<option value="BS">Back scatter</option>
|
|
|
|
|
<option value="ECH">EchoLink</option>
|
|
|
|
|
<option value="EME">Earth-Moon-Earth</option>
|
|
|
|
|
<option value="ES">Sporadic E</option>
|
|
|
|
|
<option value="FAI">Field Aligned Irregularities</option>
|
|
|
|
|
<option value="F2">F2 Reflection</option>
|
|
|
|
|
<option value="INTERNET">Internet-assisted</option>
|
|
|
|
|
<option value="ION">Ionoscatter</option>
|
|
|
|
|
<option value="IRL">IRLP</option>
|
|
|
|
|
<option value="MS">Meteor scatter</option>
|
|
|
|
|
<option value="RPT">Terrestrial or atmospheric repeater or transponder</option>
|
|
|
|
|
<option value="RS">Rain scatter</option>
|
|
|
|
|
<option value="SAT">Satellite</option>
|
|
|
|
|
<option value="TEP">Trans-equatorial</option>
|
|
|
|
|
<option value="TR">Tropospheric ducting</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="cqzone">CQ Zone</label>
|
|
|
|
|
<select id="cqzone" name="cqzone" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php
|
|
|
|
|
for ($i = 1; $i <= 40; $i++) {
|
|
|
|
|
echo '<option value="' . $i . '">' . $i . '</option>';
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="ituzone">ITU Zone</label>
|
|
|
|
|
<select id="ituzone" name="ituzone" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php
|
|
|
|
|
for ($i = 1; $i <= 90; $i++) {
|
|
|
|
|
echo '<option value="' . $i . '">' . $i . '</option>';
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="sota"><?php echo lang('gen_hamradio_sota'); ?></label>
|
|
|
|
|
<input type="text" name="sota" id="sota" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="wwff"><?php echo lang('gen_hamradio_wwff'); ?></label>
|
|
|
|
|
<input type="text" name="wwff" id="wwff" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="pota"><?php echo lang('gen_hamradio_pota'); ?></label>
|
|
|
|
|
<input type="text" name="pota" id="pota" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="operator"><?php echo lang('gen_hamradio_operator'); ?></label>
|
|
|
|
|
<input type="text" name="operator" id="operator" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<form id="searchForm" name="searchForm" action="<?php echo base_url()."index.php/logbookadvanced/search";?>" method="post">
|
|
|
|
|
<input type="hidden" id="dupes" name="dupes" value="">
|
|
|
|
|
<div class="filterbody collapse">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="dateFrom"><?php echo lang('filter_general_from') . ": " ?></label>
|
|
|
|
|
<input name="dateFrom" id="dateFrom" type="date" class="form-control form-control-sm w-auto">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="dateTo"><?php echo lang('filter_general_to') . ": " ?></label>
|
|
|
|
|
<input name="dateTo" id="dateTo" type="date" class="form-control form-control-sm w-auto">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="dx"><?php echo lang('gen_hamradio_dx'); ?></label>
|
|
|
|
|
<input type="text" name="dx" id="dx" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="dxcc"><?php echo lang('gen_hamradio_dxcc'); ?></label>
|
|
|
|
|
<select class="form-select form-select-sm" id="dxcc" name="dxcc">
|
|
|
|
|
<option value="">-</option>
|
|
|
|
|
<option value="0"><?php echo lang('filter_general_none'); ?></option>
|
|
|
|
|
<?php
|
|
|
|
|
foreach($dxccarray as $dxcc){
|
|
|
|
|
echo '<option value=' . $dxcc->adif;
|
|
|
|
|
echo '>' . $dxcc->prefix . ' - ' . ucwords(strtolower($dxcc->name), "- (/");
|
|
|
|
|
if ($dxcc->Enddate != null) {
|
|
|
|
|
echo ' - (Deleted DXCC)';
|
|
|
|
|
}
|
|
|
|
|
echo '</option>';
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="iota"><?php echo lang('gen_hamradio_iota'); ?></label>
|
|
|
|
|
<select class="form-select form-select-sm" id="iota" name="iota">
|
|
|
|
|
<option value="">-</option>
|
|
|
|
|
<?php
|
|
|
|
|
foreach($iotaarray as $iota){
|
|
|
|
|
echo '<option value=' . $iota->tag;
|
|
|
|
|
echo '>' . $iota->tag . ' - ' . $iota->name . '</option>';
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="state"><?php echo lang('gen_hamradio_state'); ?></label>
|
|
|
|
|
<input type="text" name="state" id="state" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="gridsquare"><?php echo lang('gen_hamradio_gridsquare'); ?></label>
|
|
|
|
|
<input type="text" name="gridsquare" id="gridsquare" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="mode"><?php echo lang('gen_hamradio_mode'); ?></label>
|
|
|
|
|
<select id="mode" name="mode" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php
|
|
|
|
|
foreach($modes as $modeId => $mode){
|
|
|
|
|
?><option value="<?php echo htmlspecialchars($mode);?>"><?php echo htmlspecialchars($mode);?></option><?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="band"><?php echo lang('gen_hamradio_band'); ?></label>
|
|
|
|
|
<select id="band" name="band" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php
|
|
|
|
|
foreach($bands as $band){
|
|
|
|
|
?><option value="<?php echo htmlentities($band);?>"><?php echo htmlspecialchars($band);?></option><?php
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div hidden class="sats_dropdown mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="sats"><?php echo lang('general_word_satellite'); ?></label>
|
|
|
|
|
<select class="form-select form-select-sm" id="sats" name="sats">
|
|
|
|
|
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php foreach($sats as $sat) {
|
|
|
|
|
echo '<option value="' . htmlentities($sat) . '"' . '>' . htmlentities($sat) . '</option>'."\n";
|
|
|
|
|
} ?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div hidden class="orbits_dropdown mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="orbits"><?php echo lang('general_word_orbit'); ?></label>
|
|
|
|
|
<select class="form-select form-select-sm" id="orbits" name="orbits">
|
|
|
|
|
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php foreach($orbits as $orbit) {
|
|
|
|
|
echo '<option value="' . htmlentities($orbit) . '"' . '>' . htmlentities($orbit) . '</option>'."\n";
|
|
|
|
|
} ?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="selectPropagation"><?php echo lang('filter_general_propagation'); ?></label>
|
|
|
|
|
<select id="selectPropagation" class="form-select form-select-sm" name="propmode">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="AS">Aircraft Scatter</option>
|
|
|
|
|
<option value="AUR">Aurora</option>
|
|
|
|
|
<option value="AUE">Aurora-E</option>
|
|
|
|
|
<option value="BS">Back scatter</option>
|
|
|
|
|
<option value="ECH">EchoLink</option>
|
|
|
|
|
<option value="EME">Earth-Moon-Earth</option>
|
|
|
|
|
<option value="ES">Sporadic E</option>
|
|
|
|
|
<option value="FAI">Field Aligned Irregularities</option>
|
|
|
|
|
<option value="F2">F2 Reflection</option>
|
|
|
|
|
<option value="INTERNET">Internet-assisted</option>
|
|
|
|
|
<option value="ION">Ionoscatter</option>
|
|
|
|
|
<option value="IRL">IRLP</option>
|
|
|
|
|
<option value="MS">Meteor scatter</option>
|
|
|
|
|
<option value="RPT">Terrestrial or atmospheric repeater or transponder</option>
|
|
|
|
|
<option value="RS">Rain scatter</option>
|
|
|
|
|
<option value="SAT">Satellite</option>
|
|
|
|
|
<option value="TEP">Trans-equatorial</option>
|
|
|
|
|
<option value="TR">Tropospheric ducting</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="cqzone">CQ Zone</label>
|
|
|
|
|
<select id="cqzone" name="cqzone" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php
|
|
|
|
|
for ($i = 1; $i<=40; $i++) {
|
|
|
|
|
echo '<option value="'. $i . '">'. $i .'</option>';
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="ituzone">ITU Zone</label>
|
|
|
|
|
<select id="ituzone" name="ituzone" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php
|
|
|
|
|
for ($i = 1; $i<=90; $i++) {
|
|
|
|
|
echo '<option value="'. $i . '">'. $i .'</option>';
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="sota"><?php echo lang('gen_hamradio_sota'); ?></label>
|
|
|
|
|
<input type="text" name="sota" id="sota" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="wwff"><?php echo lang('gen_hamradio_wwff'); ?></label>
|
|
|
|
|
<input type="text" name="wwff" id="wwff" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="pota"><?php echo lang('gen_hamradio_pota'); ?></label>
|
|
|
|
|
<input type="text" name="pota" id="pota" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label class="form-label" for="operator"><?php echo lang('gen_hamradio_operator'); ?></label>
|
|
|
|
|
<input type="text" name="operator" id="operator" class="form-control form-control-sm" value="">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="qslfilterbody collapse">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="qslSent"><?php echo lang('filter_qsl_sent'); ?></label>
|
|
|
|
|
<select id="qslSent" name="qslSent" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
<option value="R"><?php echo lang('general_word_requested'); ?></option>
|
|
|
|
|
<option value="Q"><?php echo lang('general_word_queued'); ?></option>
|
|
|
|
|
<option value="I"><?php echo lang('general_word_invalid_ignore'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="qslReceived"><?php echo lang('filter_qsl_recv'); ?></label>
|
|
|
|
|
<select id="qslReceived" name="qslReceived" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
<option value="R"><?php echo lang('general_word_requested'); ?></option>
|
|
|
|
|
<option value="I"><?php echo lang('general_word_invalid_ignore'); ?></option>
|
|
|
|
|
<option value="V"><?php echo lang('filter_qsl_verified'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="qslSentMethod"><?php echo lang('filter_qsl_sent_method'); ?></label>
|
|
|
|
|
<select id="qslSentMethod" name="qslSentMethod" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="B"><?php echo lang('general_word_qslcard_bureau'); ?></option>
|
|
|
|
|
<option value="D"><?php echo lang('general_word_qslcard_direct'); ?></option>
|
|
|
|
|
<option value="E"><?php echo lang('general_word_qslcard_electronic'); ?></option>
|
|
|
|
|
<option value="M"><?php echo lang('general_word_qslcard_manager'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="qslReceivedMethod"><?php echo lang('filter_qsl_recv_method'); ?></label>
|
|
|
|
|
<select id="qslReceivedMethod" name="qslReceivedMethod" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="B"><?php echo lang('general_word_qslcard_bureau'); ?></option>
|
|
|
|
|
<option value="D"><?php echo lang('general_word_qslcard_direct'); ?></option>
|
|
|
|
|
<option value="E"><?php echo lang('general_word_qslcard_electronic'); ?></option>
|
|
|
|
|
<option value="M"><?php echo lang('general_word_qslcard_manager'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="lotwSent"><?php echo lang('filter_lotw_sent'); ?></label>
|
|
|
|
|
<select id="lotwSent" name="lotwSent" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
<option value="R"><?php echo lang('general_word_requested'); ?></option>
|
|
|
|
|
<option value="Q"><?php echo lang('general_word_queued'); ?></option>
|
|
|
|
|
<option value="I"><?php echo lang('general_word_invalid_ignore'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="lotwReceived"><?php echo lang('filter_lotw_recv'); ?></label>
|
|
|
|
|
<select id="lotwReceived" name="lotwReceived" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
<option value="R"><?php echo lang('general_word_requested'); ?></option>
|
|
|
|
|
<option value="I"><?php echo lang('general_word_invalid_ignore'); ?></option>
|
|
|
|
|
<option value="V"><?php echo lang('filter_qsl_verified'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="eqslSent"><?php echo lang('filter_eqsl_sent'); ?></label>
|
|
|
|
|
<select id="eqslSent" name="eqslSent" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
<option value="R"><?php echo lang('general_word_requested'); ?></option>
|
|
|
|
|
<option value="Q"><?php echo lang('general_word_queued'); ?></option>
|
|
|
|
|
<option value="I"><?php echo lang('general_word_invalid_ignore'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="eqslReceived"><?php echo lang('filter_eqsl_recv'); ?></label>
|
|
|
|
|
<select id="eqslReceived" name="eqslReceived" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
<option value="R"><?php echo lang('general_word_requested'); ?></option>
|
|
|
|
|
<option value="I"><?php echo lang('general_word_invalid_ignore'); ?></option>
|
|
|
|
|
<option value="V"><?php echo lang('filter_qsl_verified'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="qslvia"><?php echo lang('filter_qsl_via'); ?></label>
|
|
|
|
|
<input type="search" name="qslviainput" class="form-control form-control-sm">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="qslimages"><?php echo lang('filter_qsl_images'); ?></label>
|
|
|
|
|
<select class="form-select form-select-sm" id="qslimages" name="qslimages">
|
|
|
|
|
<option value="">-</option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="qslfilterbody collapse">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="qslSent"><?php echo lang('filter_qsl_sent'); ?></label>
|
|
|
|
|
<select id="qslSent" name="qslSent" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
<option value="R"><?php echo lang('general_word_requested'); ?></option>
|
|
|
|
|
<option value="Q"><?php echo lang('general_word_queued'); ?></option>
|
|
|
|
|
<option value="I"><?php echo lang('general_word_invalid_ignore'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="qslReceived"><?php echo lang('filter_qsl_recv'); ?></label>
|
|
|
|
|
<select id="qslReceived" name="qslReceived" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
<option value="R"><?php echo lang('general_word_requested'); ?></option>
|
|
|
|
|
<option value="I"><?php echo lang('general_word_invalid_ignore'); ?></option>
|
|
|
|
|
<option value="V"><?php echo lang('filter_qsl_verified'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="qslSentMethod"><?php echo lang('filter_qsl_sent_method'); ?></label>
|
|
|
|
|
<select id="qslSentMethod" name="qslSentMethod" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="B"><?php echo lang('general_word_qslcard_bureau'); ?></option>
|
|
|
|
|
<option value="D"><?php echo lang('general_word_qslcard_direct'); ?></option>
|
|
|
|
|
<option value="E"><?php echo lang('general_word_qslcard_electronic'); ?></option>
|
|
|
|
|
<option value="M"><?php echo lang('general_word_qslcard_manager'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="qslReceivedMethod"><?php echo lang('filter_qsl_recv_method'); ?></label>
|
|
|
|
|
<select id="qslReceivedMethod" name="qslReceivedMethod" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="B"><?php echo lang('general_word_qslcard_bureau'); ?></option>
|
|
|
|
|
<option value="D"><?php echo lang('general_word_qslcard_direct'); ?></option>
|
|
|
|
|
<option value="E"><?php echo lang('general_word_qslcard_electronic'); ?></option>
|
|
|
|
|
<option value="M"><?php echo lang('general_word_qslcard_manager'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="lotwSent"><?php echo lang('filter_lotw_sent'); ?></label>
|
|
|
|
|
<select id="lotwSent" name="lotwSent" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
<option value="R"><?php echo lang('general_word_requested'); ?></option>
|
|
|
|
|
<option value="Q"><?php echo lang('general_word_queued'); ?></option>
|
|
|
|
|
<option value="I"><?php echo lang('general_word_invalid_ignore'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="lotwReceived"><?php echo lang('filter_lotw_recv'); ?></label>
|
|
|
|
|
<select id="lotwReceived" name="lotwReceived" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
<option value="R"><?php echo lang('general_word_requested'); ?></option>
|
|
|
|
|
<option value="I"><?php echo lang('general_word_invalid_ignore'); ?></option>
|
|
|
|
|
<option value="V"><?php echo lang('filter_qsl_verified'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="eqslSent"><?php echo lang('filter_eqsl_sent'); ?></label>
|
|
|
|
|
<select id="eqslSent" name="eqslSent" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
<option value="R"><?php echo lang('general_word_requested'); ?></option>
|
|
|
|
|
<option value="Q"><?php echo lang('general_word_queued'); ?></option>
|
|
|
|
|
<option value="I"><?php echo lang('general_word_invalid_ignore'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="eqslReceived"><?php echo lang('filter_eqsl_recv'); ?></label>
|
|
|
|
|
<select id="eqslReceived" name="eqslReceived" class="form-select form-select-sm">
|
|
|
|
|
<option value=""><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
<option value="R"><?php echo lang('general_word_requested'); ?></option>
|
|
|
|
|
<option value="I"><?php echo lang('general_word_invalid_ignore'); ?></option>
|
|
|
|
|
<option value="V"><?php echo lang('filter_qsl_verified'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="qslvia"><?php echo lang('filter_qsl_via'); ?></label>
|
|
|
|
|
<input type="search" name="qslvia" class="form-control form-control-sm">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-3 col-lg-2 col-md-2 col-sm-3 col-xl">
|
|
|
|
|
<label for="qslimages"><?php echo lang('filter_qsl_images'); ?></label>
|
|
|
|
|
<select class="form-select form-select-sm" id="qslimages" name="qslimages">
|
|
|
|
|
<option value="">-</option>
|
|
|
|
|
<option value="Y"><?php echo lang('general_word_yes'); ?></option>
|
|
|
|
|
<option value="N"><?php echo lang('general_word_no'); ?></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="actionbody collapse">
|
|
|
|
|
<script>
|
|
|
|
|
var lang_filter_actions_delete_warning = '<?php echo lang('filter_actions_delete_warning'); ?>';
|
|
|
|
|
</script>
|
|
|
|
|
<div class="mb-2 btn-group">
|
|
|
|
|
<span class="h6 me-1"><?php echo lang('filter_actions_w_selected'); ?></span>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="btnUpdateFromCallbook"><?php echo lang('filter_actions_update_f_callbook'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="queueBureau"><?php echo lang('filter_actions_queue_bureau'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="queueDirect"><?php echo lang('filter_actions_queue_direct'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="queueElectronic"><?php echo lang('filter_actions_queue_electronic'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-success me-1" id="sentBureau"><?php echo lang('filter_actions_sent_bureau'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-success me-1" id="sentDirect"><?php echo lang('filter_actions_sent_direct'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-success me-1" id="sentElectronic"><?php echo lang('filter_actions_sent_electronic'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-warning me-1" id="dontSend"><?php echo lang('filter_actions_not_sent'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-warning me-1" id="notRequired"><?php echo lang('filter_actions_qsl_n_required'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-warning me-1" id="receivedBureau"><?php echo lang('filter_actions_recv_bureau'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-warning me-1" id="receivedDirect"><?php echo lang('filter_actions_recv_direct'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-warning me-1" id="receivedElectronic"><?php echo lang('filter_actions_recv_electronic'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-info me-1" id="exportAdif"><?php echo lang('filter_actions_create_adif'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-info me-1" id="printLabel"><?php echo lang('filter_actions_print_label'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-info me-1" id="qslSlideshow"><?php echo lang('filter_actions_qsl_slideshow'); ?></button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="actionbody collapse">
|
|
|
|
|
<script>
|
|
|
|
|
var lang_filter_actions_delete_warning = '<?php echo lang('filter_actions_delete_warning'); ?>';
|
|
|
|
|
</script>
|
|
|
|
|
<div class="mb-2 btn-group">
|
|
|
|
|
<span class="h6 me-1"><?php echo lang('filter_actions_w_selected'); ?></span>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="btnUpdateFromCallbook"><?php echo lang('filter_actions_update_f_callbook'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="queueBureau"><?php echo lang('filter_actions_queue_bureau'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="queueDirect"><?php echo lang('filter_actions_queue_direct'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="queueElectronic"><?php echo lang('filter_actions_queue_electronic'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-success me-1" id="sentBureau"><?php echo lang('filter_actions_sent_bureau'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-success me-1" id="sentDirect"><?php echo lang('filter_actions_sent_direct'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-success me-1" id="sentElectronic"><?php echo lang('filter_actions_sent_electronic'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-warning me-1" id="dontSend"><?php echo lang('filter_actions_not_sent'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-warning me-1" id="notRequired"><?php echo lang('filter_actions_qsl_n_required'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-warning me-1" id="receivedBureau"><?php echo lang('filter_actions_recv_bureau'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-warning me-1" id="receivedDirect"><?php echo lang('filter_actions_recv_direct'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-warning me-1" id="receivedElectronic"><?php echo lang('filter_actions_recv_electronic'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-info me-1" id="exportAdif"><?php echo lang('filter_actions_create_adif'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-info me-1" id="printLabel"><?php echo lang('filter_actions_print_label'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-info me-1" id="qslSlideshow"><?php echo lang('filter_actions_qsl_slideshow'); ?></button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="quickfilterbody collapse">
|
|
|
|
|
<div class="mb-2 btn-group">
|
|
|
|
|
<span class="h6 me-1"><?php echo lang('filter_quicksearch_w_sel'); ?></span>
|
|
|
|
|
<?php if (($options->dx->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchCallsign"><?php echo lang('filter_search_callsign'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->dxcc->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchDxcc"><?php echo lang('filter_search_dxcc'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->state->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchState"><?php echo lang('filter_search_state'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->refs->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchGridsquare"><?php echo lang('filter_search_gridsquare'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->cqzone->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchCqZone"><?php echo lang('filter_search_cq_zone'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->ituzone->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchItuZone"><?php echo lang('filter_search_itu_zone'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->mode->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchMode"><?php echo lang('filter_search_mode'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->band->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchBand"><?php echo lang('filter_search_band'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->iota->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchIota"><?php echo lang('filter_search_iota'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->refs->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchSota"><?php echo lang('filter_search_sota'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->refs->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchPota"><?php echo lang('filter_search_pota'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->refs->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchWwff"><?php echo lang('filter_search_wwff'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->operator->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchOperator"><?php echo lang('filter_search_operator'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="quickfilterbody collapse">
|
|
|
|
|
<div class="mb-2 btn-group">
|
|
|
|
|
<span class="h6 me-1"><?php echo lang('filter_quicksearch_w_sel'); ?></span>
|
|
|
|
|
<?php if (($options->dx->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchCallsign"><?php echo lang('filter_search_callsign'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->dxcc->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchDxcc"><?php echo lang('filter_search_dxcc'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->state->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchState"><?php echo lang('filter_search_state'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->refs->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchGridsquare"><?php echo lang('filter_search_gridsquare'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->cqzone->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchCqZone"><?php echo lang('filter_search_cq_zone'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->ituzone->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchItuZone"><?php echo lang('filter_search_itu_zone'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->mode->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchMode"><?php echo lang('filter_search_mode'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->band->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchBand"><?php echo lang('filter_search_band'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->iota->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchIota"><?php echo lang('filter_search_iota'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->refs->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchSota"><?php echo lang('filter_search_sota'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->refs->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchPota"><?php echo lang('filter_search_pota'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->refs->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchWwff"><?php echo lang('filter_search_wwff'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
<?php if (($options->operator->show ?? "true") == "true") { ?>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1" id="searchOperator"><?php echo lang('filter_search_operator'); ?></button><?php
|
|
|
|
|
} ?>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row pt-2">
|
|
|
|
|
<div class="mb-3 d-flex align-items-center col-lg d-flex flex-row justify-content-center align-items-center">
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1 lba_buttons" data-bs-toggle="collapse" data-bs-target=".quickfilterbody"><?php echo lang('filter_quickfilters'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1 lba_buttons" data-bs-toggle="collapse" data-bs-target=".qslfilterbody"><?php echo lang('filter_qsl_filters'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1 lba_buttons" data-bs-toggle="collapse" data-bs-target=".filterbody"><?php echo lang('filter_filters'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1 lba_buttons" data-bs-toggle="collapse" data-bs-target=".actionbody"><?php echo lang('filter_actions'); ?></button>
|
|
|
|
|
<label for="qsoResults" class="me-2"><?php echo lang('filter_results'); ?></label>
|
|
|
|
|
<select id="qsoResults" name="qsoResults" class="form-select form-select-sm me-2 w-auto">
|
|
|
|
|
<option value="250">250</option>
|
|
|
|
|
<option value="1000">1000</option>
|
|
|
|
|
<option value="2500">2500</option>
|
|
|
|
|
<option value="5000">5000</option>
|
|
|
|
|
</select>
|
|
|
|
|
<label class="me-2" for="de"><?php echo lang('general_word_location'); ?></label>
|
|
|
|
|
<select id="de" name="de" class="form-select form-select-sm me-2 w-auto">
|
|
|
|
|
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php foreach ($station_profile->result() as $station) { ?>
|
|
|
|
|
<option value="<?php echo $station->station_id; ?>" <?php if ($station->station_id == $this->stations->find_active()) {
|
|
|
|
|
echo " selected =\"selected\"";
|
|
|
|
|
} ?>>
|
|
|
|
|
<?php echo lang('gen_hamradio_callsign') . ": " ?>
|
|
|
|
|
<?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)
|
|
|
|
|
</option>
|
|
|
|
|
<?php } ?>
|
|
|
|
|
</select>
|
|
|
|
|
<button type="submit" class="btn btn-sm btn-primary me-1 ld-ext-right" id="searchButton"><?php echo lang('filter_search'); ?><div class="ld ld-ring ld-spin"></div></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1 ld-ext-right" id="dupeButton"><?php echo lang('filter_dupes'); ?><div class="ld ld-ring ld-spin"></div></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1 ld-ext-right" id="editButton">Edit<div class="ld ld-ring ld-spin"></div></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-danger me-1" id="deleteQsos"><?php echo lang('filter_actions_delete'); ?></button>
|
|
|
|
|
<div class="btn-group me-1" role="group">
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary ld-ext-right" id="mapButton" onclick="mapQsos(this.form);"><?php echo lang('filter_map'); ?><div class="ld ld-ring ld-spin"></div></button>
|
|
|
|
|
<button id="btnGroupDrop1" type="button" class="btn btn-sm btn-primary dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false"></button>
|
|
|
|
|
<ul class="dropdown-menu" aria-labelledby="btnGroupDrop1">
|
|
|
|
|
<li><button type="button" class="dropdown-item" onclick="mapGlobeQsos(this.form);" id="mapGlobeButton">Globe map</button></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<button type="options" class="btn btn-sm btn-primary me-1" id="optionButton"><?php echo lang('filter_options'); ?></button>
|
|
|
|
|
<button type="reset" class="btn btn-sm btn-danger me-1" id="resetButton"><?php echo lang('filter_reset'); ?></button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row pt-2">
|
|
|
|
|
<div class="mb-3 d-flex align-items-center col-lg d-flex flex-row justify-content-center align-items-center">
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1 lba_buttons" data-bs-toggle="collapse"
|
|
|
|
|
data-bs-target=".quickfilterbody"><?php echo lang('filter_quickfilters'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1 lba_buttons" data-bs-toggle="collapse"
|
|
|
|
|
data-bs-target=".qslfilterbody"><?php echo lang('filter_qsl_filters'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1 lba_buttons" data-bs-toggle="collapse"
|
|
|
|
|
data-bs-target=".filterbody"><?php echo lang('filter_filters'); ?></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1 lba_buttons" data-bs-toggle="collapse"
|
|
|
|
|
data-bs-target=".actionbody"><?php echo lang('filter_actions'); ?></button>
|
|
|
|
|
<label for="qsoResults" class="me-2"><?php echo lang('filter_results'); ?></label>
|
|
|
|
|
<select id="qsoResults" name="qsoresults" class="form-select form-select-sm me-2 w-auto">
|
|
|
|
|
<option value="250">250</option>
|
|
|
|
|
<option value="1000">1000</option>
|
|
|
|
|
<option value="2500">2500</option>
|
|
|
|
|
<option value="5000">5000</option>
|
|
|
|
|
</select>
|
|
|
|
|
<label class="me-2" for="de"><?php echo lang('general_word_location'); ?></label>
|
|
|
|
|
<select id="de" name="de" class="form-select form-select-sm me-2 w-auto">
|
|
|
|
|
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
|
|
|
|
<?php foreach ($station_profile->result() as $station) { ?>
|
|
|
|
|
<option value="<?php echo $station->station_id; ?>"
|
|
|
|
|
<?php if ($station->station_id == $this->stations->find_active()) {
|
|
|
|
|
echo " selected =\"selected\"";
|
|
|
|
|
} ?>>
|
|
|
|
|
<?php echo lang('gen_hamradio_callsign') . ": " ?>
|
|
|
|
|
<?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)
|
|
|
|
|
</option>
|
|
|
|
|
<?php } ?>
|
|
|
|
|
</select>
|
|
|
|
|
<button type="submit" class="btn btn-sm btn-primary me-1 ld-ext-right" id="searchButton"><?php echo lang('filter_search'); ?><div class="ld ld-ring ld-spin"></div></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1 ld-ext-right" id="dupeButton"><?php echo lang('filter_dupes'); ?><div class="ld ld-ring ld-spin"></div></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary me-1 ld-ext-right" id="editButton">Edit<div class="ld ld-ring ld-spin"></div></button>
|
|
|
|
|
<button type="button" class="btn btn-sm btn-danger me-1" id="deleteQsos"><?php echo lang('filter_actions_delete'); ?></button>
|
|
|
|
|
<div class="btn-group me-1" role="group">
|
|
|
|
|
<button type="button" class="btn btn-sm btn-primary ld-ext-right" id="mapButton" onclick="mapQsos(this.form);"><?php echo lang('filter_map'); ?><div class="ld ld-ring ld-spin"></div></button>
|
|
|
|
|
<button id="btnGroupDrop1" type="button" class="btn btn-sm btn-primary dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false"></button>
|
|
|
|
|
<ul class="dropdown-menu" aria-labelledby="btnGroupDrop1">
|
|
|
|
|
<li><button type="button" class="dropdown-item" onclick="mapGlobeQsos(this.form);" id="mapGlobeButton">Globe map</button></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<button type="options" class="btn btn-sm btn-primary me-1" id="optionButton"><?php echo lang('filter_options'); ?></button>
|
|
|
|
|
<button type="reset" class="btn btn-sm btn-danger me-1" id="resetButton"><?php echo lang('filter_reset'); ?></button>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|