当前提交
96ca956936
共有 11 个文件被更改,包括 43 次插入 和 40 次删除
|
|
@ -7,7 +7,7 @@
|
|||
<div class="mb-3 row">
|
||||
<label class="col-md-1 control-label" for="band">Band</label>
|
||||
<div class="col-md-3">
|
||||
<select id="band" name="band" class="form-select form-select">
|
||||
<select id="band" name="band" class="form-select">
|
||||
<option value="All">All</option>
|
||||
<?php foreach($worked_bands as $band) {
|
||||
echo '<option value="' . $band . '">' . $band . '</option>'."\n";
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
<label class="col-md-1 control-label" for="mode">Mode</label>
|
||||
<div class="col-md-3">
|
||||
<select id="mode" name="mode" class="form-select form-select">
|
||||
<select id="mode" name="mode" class="form-select">
|
||||
<option value="All">All</option>
|
||||
<?php
|
||||
foreach($modes->result() as $mode){
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
<div class="mb-3 row">
|
||||
<label class="col-md-1 control-label" for="band"><?php echo lang('gen_hamradio_band'); ?></label>
|
||||
<div class="col-md-3">
|
||||
<select id="band" name="band" class="form-select form-select">
|
||||
<select id="band" name="band" class="form-select">
|
||||
<option value="All" <?php if ($this->input->post('band') == "All" || $this->input->method() !== 'post') echo ' selected'; ?> ><?php echo lang('general_word_all'); ?></option>
|
||||
<?php foreach($worked_bands as $band) {
|
||||
echo '<option value="' . $band . '"';
|
||||
|
|
@ -19,7 +19,7 @@
|
|||
<div class="mb-3 row" id="leogeo">
|
||||
<label class="col-md-1 control-label" for="leogeo">LEO/GEO</label>
|
||||
<div class="col-md-3">
|
||||
<select id="leogeo" name="leogeo" class="form-select form-select">
|
||||
<select id="leogeo" name="leogeo" class="form-select">
|
||||
<option value="both" <?php if ($this->input->post('leogeo') == "both" || $this->input->method() !== 'post') echo ' selected'; ?> >Both</option>
|
||||
<option value="leo" <?php if ($this->input->post('leogeo') == "leo") echo ' selected'; ?>>LEO</option>
|
||||
<option value="geo" <?php if ($this->input->post('leogeo') == "geo") echo ' selected'; ?>>GEO</option>
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
<div class="mb-3 row">
|
||||
<label class="col-md-1 control-label" for="mincount"><?php echo lang('gridsquares_minimum_count'); ?></label>
|
||||
<div class="col-md-3">
|
||||
<select id="mincount" name="mincount" class="form-select form-select">
|
||||
<select id="mincount" name="mincount" class="form-select">
|
||||
<?php
|
||||
$i = 1;
|
||||
do {
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
</div>
|
||||
<div class="mb-3 col-md-3">
|
||||
<label for="mode"><?php echo lang('gen_hamradio_mode'); ?></label>
|
||||
<select id="mode" name="mode" class="form-select form-select">
|
||||
<select id="mode" name="mode" class="form-select">
|
||||
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
||||
<?php
|
||||
foreach($modes->result() as $mode){
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
</div>
|
||||
<div class="mb-3 col-md-3">
|
||||
<label for="mode"><?php echo lang('gen_hamradio_mode'); ?></label>
|
||||
<select id="mode" name="mode" class="form-select form-select">
|
||||
<select id="mode" name="mode" class="form-select">
|
||||
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
||||
<?php
|
||||
foreach($modes->result() as $mode){
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
|
||||
<div class="mb-3 col-md-3">
|
||||
<label for="mode"><?php echo lang('gen_hamradio_mode'); ?></label>
|
||||
<select id="mode" name="mode" class="form-select form-select">
|
||||
<select id="mode" name="mode" class="form-select">
|
||||
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
||||
<?php
|
||||
foreach($modes->result() as $mode){
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<form method="post" class="d-flex align-items-center">
|
||||
<select id="quicklookuptype" name="type" class="form-select form-select">
|
||||
<select id="quicklookuptype" name="type" class="form-select w-auto me-2">
|
||||
<option value="cq">CQ Zone</option>
|
||||
<option value="dxcc">DXCC</option>
|
||||
<option value="vucc">Gridsquare</option>
|
||||
|
|
@ -9,8 +9,19 @@
|
|||
<option value="wwff">WWFF</option>
|
||||
</select>
|
||||
<div> </div>
|
||||
<input style="display:none" class="form-control input-group-sm" id="quicklookuptext" type="text" name="searchfield" placeholder="" aria-label="Search">
|
||||
<select style="display:none" class="form-select form-select" id="quicklookupdxcc" name="dxcc" required>
|
||||
<input style="display:none" class="form-control input-group-sm w-auto" id="quicklookuptext" type="text" name="searchfield" placeholder="" aria-label="Search">
|
||||
|
||||
<!-- CQ Zone -->
|
||||
<select class="form-select w-auto" id="quicklookupcqz" name="cqz" required>
|
||||
<?php
|
||||
for ($i = 1; $i <= 40; $i++) {
|
||||
echo '<option value="' . $i . '">' . $i . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
|
||||
<!-- DXCC -->
|
||||
<select style="display:none" class="form-select w-auto" id="quicklookupdxcc" name="dxcc" required>
|
||||
|
||||
<?php
|
||||
foreach ($dxcc as $d) {
|
||||
|
|
@ -24,15 +35,7 @@
|
|||
|
||||
</select>
|
||||
|
||||
<select class="form-select form-select" id="quicklookupcqz" name="cqz" required>
|
||||
<?php
|
||||
for ($i = 1; $i<=40; $i++) {
|
||||
echo '<option value="'. $i . '">'. $i .'</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
|
||||
<select style="display:none" class="form-select form-select" id="quicklookupwas" name="was">
|
||||
<select style="display:none" class="form-select w-auto" id="quicklookupwas" name="was">
|
||||
<option value="AL">Alabama (AL)</option>
|
||||
<option value="AK">Alaska (AK)</option>
|
||||
<option value="AZ">Arizona (AZ)</option>
|
||||
|
|
@ -86,7 +89,7 @@
|
|||
<option value="WY">Wyoming (WY)</option>
|
||||
</select>
|
||||
|
||||
<select style="display:none" class="form-select form-select" id="quicklookupiota" name="iota_ref">
|
||||
<select style="display:none" class="form-select w-auto" id="quicklookupiota" name="iota_ref">
|
||||
|
||||
<?php
|
||||
foreach ($iota as $i) {
|
||||
|
|
@ -95,7 +98,7 @@
|
|||
?>
|
||||
|
||||
</select>
|
||||
<div> </div><button id="button1id" type="button" name="button1id" class="btn btn-primary ld-ext-right" onclick="getLookupResult(this.form)">Show<div class="ld ld-ring ld-spin"></div></button>
|
||||
<div> </div><button id="button1id" type="button" name="button1id" class="btn btn-primary ld-ext-right ms-5" onclick="getLookupResult(this.form)">Show<div class="ld ld-ring ld-spin"></div></button>
|
||||
</form>
|
||||
<br />
|
||||
<div class="table-responsive" id="lookupresulttable">
|
||||
|
|
|
|||
|
|
@ -27,10 +27,10 @@ foreach ($result as $mode => $value) {
|
|||
$info = '<td>';
|
||||
|
||||
if ($val == 'W') {
|
||||
$info .= '<div class=\'alert-danger\'>' . $linkinfo . '</div>';
|
||||
$info .= '<div class=\'awardsBgDanger\'>' . $linkinfo . '</div>';
|
||||
}
|
||||
else if ($val == 'C') {
|
||||
$info .= '<div class=\'alert-success\'>' . $linkinfo . '</div>';
|
||||
$info .= '<div class=\'awardsBgSuccess\'>' . $linkinfo . '</div>';
|
||||
}
|
||||
else {
|
||||
$info .= $val;
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@
|
|||
<div class="row">
|
||||
<div class="mb-3 col-sm-6" id="us_state">
|
||||
<label for="stateInput"><?php echo lang("station_location_state"); ?></label>
|
||||
<select class="form-select form-select" name="station_state" id="StateHelp" aria-describedby="stationCntyInputHelp">
|
||||
<select class="form-select" name="station_state" id="StateHelp" aria-describedby="stationCntyInputHelp">
|
||||
<option value="" selected></option>
|
||||
<option value="AK">Alaska</option>
|
||||
<option value="AL">Alabama</option>
|
||||
|
|
@ -127,7 +127,7 @@
|
|||
|
||||
<div class="mb-3 col-sm-6" id="canada_state">
|
||||
<label for="stateInput"><?php echo lang("station_location_state"); ?></label>
|
||||
<select class="form-select form-select" name="station_ca_state" id="StateHelp" aria-describedby="stationCntyInputHelp">
|
||||
<select class="form-select" name="station_ca_state" id="StateHelp" aria-describedby="stationCntyInputHelp">
|
||||
<option value="" selected></option>
|
||||
<option value="AB">Alberta</option>
|
||||
<option value="BC">British Columbia</option>
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@
|
|||
<!-- US State -->
|
||||
<div class="mb-3" id="us_state">
|
||||
<label for="stateInput"><?php echo lang("station_location_state"); ?></label>
|
||||
<select class="form-select form-select" name="station_state" id="StateHelp" aria-describedby="stationCntyInputHelp">
|
||||
<select class="form-select" name="station_state" id="StateHelp" aria-describedby="stationCntyInputHelp">
|
||||
<option value=""></option>
|
||||
<option value="AK" <?php if($my_station_profile->state == "AK") { echo "selected"; } ?>>Alaska</option>
|
||||
<option value="AL" <?php if($my_station_profile->state == "AL") { echo "selected"; } ?>>Alabama</option>
|
||||
|
|
@ -156,7 +156,7 @@
|
|||
<!-- Canada State -->
|
||||
<div class="mb-3" id="canada_state">
|
||||
<label for="stateInput"><?php echo lang("station_location_state"); ?></label>
|
||||
<select class="form-select form-select" name="station_ca_state" id="StateHelp" aria-describedby="stationCntyInputHelp">
|
||||
<select class="form-select" name="station_ca_state" id="StateHelp" aria-describedby="stationCntyInputHelp">
|
||||
<option value=""></option>
|
||||
<option value="AB" <?php if($my_station_profile->state == "AB") { echo "selected"; } ?>>Alberta</option>
|
||||
<option value="BC" <?php if($my_station_profile->state == "BC") { echo "selected"; } ?>>British Columbia</option>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
<div class="mb-3 row">
|
||||
<label class="col-md-1 control-label" for="band"><?php echo lang('gen_hamradio_band') ?></label>
|
||||
<div class="col-md-3">
|
||||
<select id="band" name="band" class="form-select form-select">
|
||||
<select id="band" name="band" class="form-select">
|
||||
<option value="All" <?php if ($this->input->post('band') == "All" || $this->input->method() !== 'post') echo ' selected'; ?> ><?php echo lang('general_word_all') ?></option>
|
||||
<?php foreach($worked_bands as $band) {
|
||||
echo '<option value="' . $band . '"';
|
||||
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
<label class="col-md-1 control-label" for="mode"><?php echo lang('gen_hamradio_mode') ?></label>
|
||||
<div class="col-md-3">
|
||||
<select id="mode" name="mode" class="form-select form-select">
|
||||
<select id="mode" name="mode" class="form-select">
|
||||
<option value="All" <?php if ($this->input->post('mode') == "All" || $this->input->method() !== 'post') echo ' selected'; ?> ><?php echo lang('general_word_all') ?></option>
|
||||
<?php
|
||||
foreach($modes->result() as $mode){
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
<div class="mb-3 row">
|
||||
<label class="col-md-1 control-label" for="award"><?php echo lang('gen_hamradio_award') ?></label>
|
||||
<div class="col-md-3">
|
||||
<select id="award" name="award" class="form-select form-select">
|
||||
<select id="award" name="award" class="form-select">
|
||||
<option value="dxcc" <?php if ($this->input->post('award') == "dxcc") echo ' selected'; ?> >DX Century Club (DXCC)</option>
|
||||
<option value="was" <?php if ($this->input->post('award') == "was") echo ' selected'; ?> >Worked All States (WAS)</option>
|
||||
<option value="iota" <?php if ($this->input->post('award') == "iota") echo ' selected'; ?> >Islands On The Air (IOTA)</option>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
<div class="mb-3 row">
|
||||
<label class="col-md-1 control-label" for="band">Band</label>
|
||||
<div class="col-md-3">
|
||||
<select id="band" name="band" class="form-select form-select">
|
||||
<select id="band" name="band" class="form-select">
|
||||
<option value="All">All</option>
|
||||
<?php foreach($worked_bands as $band) {
|
||||
echo '<option value="' . $band . '">' . $band . '</option>'."\n";
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
<label class="col-md-1 control-label" for="dxcc">DXCC</label>
|
||||
<div class="col-md-3">
|
||||
<select id="dxcc" name="dxcc" class="form-select form-select">
|
||||
<select id="dxcc" name="dxcc" class="form-select">
|
||||
<option value = 'All'>All</option>
|
||||
<?php
|
||||
if ($dxcc_list->num_rows() > 0) {
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<div class="mb-3 row">
|
||||
<label class="col-md-1 control-label" for="cqzone">CQ Zone</label>
|
||||
<div class="col-md-3">
|
||||
<select id="cqzone" name="cqzone" class="form-select form-select">
|
||||
<select id="cqzone" name="cqzone" class="form-select">
|
||||
<option value = 'All'>All</option>
|
||||
<?php
|
||||
for ($i = 1; $i<=40; $i++) {
|
||||
|
|
|
|||
正在加载…
在新工单中引用