当前提交
96ca956936
共有 11 个文件被更改,包括 43 次插入 和 40 次删除
|
|
@ -7,7 +7,7 @@
|
||||||
<div class="mb-3 row">
|
<div class="mb-3 row">
|
||||||
<label class="col-md-1 control-label" for="band">Band</label>
|
<label class="col-md-1 control-label" for="band">Band</label>
|
||||||
<div class="col-md-3">
|
<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>
|
<option value="All">All</option>
|
||||||
<?php foreach($worked_bands as $band) {
|
<?php foreach($worked_bands as $band) {
|
||||||
echo '<option value="' . $band . '">' . $band . '</option>'."\n";
|
echo '<option value="' . $band . '">' . $band . '</option>'."\n";
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
<label class="col-md-1 control-label" for="mode">Mode</label>
|
<label class="col-md-1 control-label" for="mode">Mode</label>
|
||||||
<div class="col-md-3">
|
<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>
|
<option value="All">All</option>
|
||||||
<?php
|
<?php
|
||||||
foreach($modes->result() as $mode){
|
foreach($modes->result() as $mode){
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<div class="mb-3 row">
|
<div class="mb-3 row">
|
||||||
<label class="col-md-1 control-label" for="band"><?php echo lang('gen_hamradio_band'); ?></label>
|
<label class="col-md-1 control-label" for="band"><?php echo lang('gen_hamradio_band'); ?></label>
|
||||||
<div class="col-md-3">
|
<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>
|
<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) {
|
<?php foreach($worked_bands as $band) {
|
||||||
echo '<option value="' . $band . '"';
|
echo '<option value="' . $band . '"';
|
||||||
|
|
@ -19,7 +19,7 @@
|
||||||
<div class="mb-3 row" id="leogeo">
|
<div class="mb-3 row" id="leogeo">
|
||||||
<label class="col-md-1 control-label" for="leogeo">LEO/GEO</label>
|
<label class="col-md-1 control-label" for="leogeo">LEO/GEO</label>
|
||||||
<div class="col-md-3">
|
<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="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="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>
|
<option value="geo" <?php if ($this->input->post('leogeo') == "geo") echo ' selected'; ?>>GEO</option>
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
<div class="mb-3 row">
|
<div class="mb-3 row">
|
||||||
<label class="col-md-1 control-label" for="mincount"><?php echo lang('gridsquares_minimum_count'); ?></label>
|
<label class="col-md-1 control-label" for="mincount"><?php echo lang('gridsquares_minimum_count'); ?></label>
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
<select id="mincount" name="mincount" class="form-select form-select">
|
<select id="mincount" name="mincount" class="form-select">
|
||||||
<?php
|
<?php
|
||||||
$i = 1;
|
$i = 1;
|
||||||
do {
|
do {
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="mb-3 col-md-3">
|
<div class="mb-3 col-md-3">
|
||||||
<label for="mode"><?php echo lang('gen_hamradio_mode'); ?></label>
|
<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>
|
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
||||||
<?php
|
<?php
|
||||||
foreach($modes->result() as $mode){
|
foreach($modes->result() as $mode){
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="mb-3 col-md-3">
|
<div class="mb-3 col-md-3">
|
||||||
<label for="mode"><?php echo lang('gen_hamradio_mode'); ?></label>
|
<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>
|
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
||||||
<?php
|
<?php
|
||||||
foreach($modes->result() as $mode){
|
foreach($modes->result() as $mode){
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
<div class="mb-3 col-md-3">
|
<div class="mb-3 col-md-3">
|
||||||
<label for="mode"><?php echo lang('gen_hamradio_mode'); ?></label>
|
<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>
|
<option value="All"><?php echo lang('general_word_all'); ?></option>
|
||||||
<?php
|
<?php
|
||||||
foreach($modes->result() as $mode){
|
foreach($modes->result() as $mode){
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<form method="post" class="d-flex align-items-center">
|
<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="cq">CQ Zone</option>
|
||||||
<option value="dxcc">DXCC</option>
|
<option value="dxcc">DXCC</option>
|
||||||
<option value="vucc">Gridsquare</option>
|
<option value="vucc">Gridsquare</option>
|
||||||
|
|
@ -9,14 +9,25 @@
|
||||||
<option value="wwff">WWFF</option>
|
<option value="wwff">WWFF</option>
|
||||||
</select>
|
</select>
|
||||||
<div> </div>
|
<div> </div>
|
||||||
<input style="display:none" class="form-control input-group-sm" id="quicklookuptext" type="text" name="searchfield" placeholder="" aria-label="Search">
|
<input style="display:none" class="form-control input-group-sm w-auto" id="quicklookuptext" type="text" name="searchfield" placeholder="" aria-label="Search">
|
||||||
<select style="display:none" class="form-select form-select" id="quicklookupdxcc" name="dxcc" required>
|
|
||||||
|
<!-- 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
|
<?php
|
||||||
foreach($dxcc as $d){
|
foreach ($dxcc as $d) {
|
||||||
echo '<option value=' . $d->adif . '>' . $d->prefix . ' - ' . ucwords(strtolower($d->name), "- (/");
|
echo '<option value=' . $d->adif . '>' . $d->prefix . ' - ' . ucwords(strtolower($d->name), "- (/");
|
||||||
if ($d->Enddate != null) {
|
if ($d->Enddate != null) {
|
||||||
echo ' ('.lang('gen_hamradio_deleted_dxcc').')';
|
echo ' (' . lang('gen_hamradio_deleted_dxcc') . ')';
|
||||||
}
|
}
|
||||||
echo '</option>';
|
echo '</option>';
|
||||||
}
|
}
|
||||||
|
|
@ -24,15 +35,7 @@
|
||||||
|
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select class="form-select form-select" id="quicklookupcqz" name="cqz" required>
|
<select style="display:none" class="form-select w-auto" id="quicklookupwas" name="was">
|
||||||
<?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">
|
|
||||||
<option value="AL">Alabama (AL)</option>
|
<option value="AL">Alabama (AL)</option>
|
||||||
<option value="AK">Alaska (AK)</option>
|
<option value="AK">Alaska (AK)</option>
|
||||||
<option value="AZ">Arizona (AZ)</option>
|
<option value="AZ">Arizona (AZ)</option>
|
||||||
|
|
@ -86,17 +89,17 @@
|
||||||
<option value="WY">Wyoming (WY)</option>
|
<option value="WY">Wyoming (WY)</option>
|
||||||
</select>
|
</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
|
<?php
|
||||||
foreach($iota as $i){
|
foreach ($iota as $i) {
|
||||||
echo '<option value=' . $i->tag . '>' . $i->tag . ' - ' . $i->name . '</option>';
|
echo '<option value=' . $i->tag . '>' . $i->tag . ' - ' . $i->name . '</option>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
</select>
|
</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>
|
</form>
|
||||||
<br/>
|
<br />
|
||||||
<div class="table-responsive" id="lookupresulttable">
|
<div class="table-responsive" id="lookupresulttable">
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -27,10 +27,10 @@ foreach ($result as $mode => $value) {
|
||||||
$info = '<td>';
|
$info = '<td>';
|
||||||
|
|
||||||
if ($val == 'W') {
|
if ($val == 'W') {
|
||||||
$info .= '<div class=\'alert-danger\'>' . $linkinfo . '</div>';
|
$info .= '<div class=\'awardsBgDanger\'>' . $linkinfo . '</div>';
|
||||||
}
|
}
|
||||||
else if ($val == 'C') {
|
else if ($val == 'C') {
|
||||||
$info .= '<div class=\'alert-success\'>' . $linkinfo . '</div>';
|
$info .= '<div class=\'awardsBgSuccess\'>' . $linkinfo . '</div>';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$info .= $val;
|
$info .= $val;
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,7 @@
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="mb-3 col-sm-6" id="us_state">
|
<div class="mb-3 col-sm-6" id="us_state">
|
||||||
<label for="stateInput"><?php echo lang("station_location_state"); ?></label>
|
<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="" selected></option>
|
||||||
<option value="AK">Alaska</option>
|
<option value="AK">Alaska</option>
|
||||||
<option value="AL">Alabama</option>
|
<option value="AL">Alabama</option>
|
||||||
|
|
@ -127,7 +127,7 @@
|
||||||
|
|
||||||
<div class="mb-3 col-sm-6" id="canada_state">
|
<div class="mb-3 col-sm-6" id="canada_state">
|
||||||
<label for="stateInput"><?php echo lang("station_location_state"); ?></label>
|
<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="" selected></option>
|
||||||
<option value="AB">Alberta</option>
|
<option value="AB">Alberta</option>
|
||||||
<option value="BC">British Columbia</option>
|
<option value="BC">British Columbia</option>
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
<!-- US State -->
|
<!-- US State -->
|
||||||
<div class="mb-3" id="us_state">
|
<div class="mb-3" id="us_state">
|
||||||
<label for="stateInput"><?php echo lang("station_location_state"); ?></label>
|
<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=""></option>
|
||||||
<option value="AK" <?php if($my_station_profile->state == "AK") { echo "selected"; } ?>>Alaska</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>
|
<option value="AL" <?php if($my_station_profile->state == "AL") { echo "selected"; } ?>>Alabama</option>
|
||||||
|
|
@ -156,7 +156,7 @@
|
||||||
<!-- Canada State -->
|
<!-- Canada State -->
|
||||||
<div class="mb-3" id="canada_state">
|
<div class="mb-3" id="canada_state">
|
||||||
<label for="stateInput"><?php echo lang("station_location_state"); ?></label>
|
<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=""></option>
|
||||||
<option value="AB" <?php if($my_station_profile->state == "AB") { echo "selected"; } ?>>Alberta</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>
|
<option value="BC" <?php if($my_station_profile->state == "BC") { echo "selected"; } ?>>British Columbia</option>
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
<div class="mb-3 row">
|
<div class="mb-3 row">
|
||||||
<label class="col-md-1 control-label" for="band"><?php echo lang('gen_hamradio_band') ?></label>
|
<label class="col-md-1 control-label" for="band"><?php echo lang('gen_hamradio_band') ?></label>
|
||||||
<div class="col-md-3">
|
<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>
|
<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) {
|
<?php foreach($worked_bands as $band) {
|
||||||
echo '<option value="' . $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>
|
<label class="col-md-1 control-label" for="mode"><?php echo lang('gen_hamradio_mode') ?></label>
|
||||||
<div class="col-md-3">
|
<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>
|
<option value="All" <?php if ($this->input->post('mode') == "All" || $this->input->method() !== 'post') echo ' selected'; ?> ><?php echo lang('general_word_all') ?></option>
|
||||||
<?php
|
<?php
|
||||||
foreach($modes->result() as $mode){
|
foreach($modes->result() as $mode){
|
||||||
|
|
@ -40,7 +40,7 @@
|
||||||
<div class="mb-3 row">
|
<div class="mb-3 row">
|
||||||
<label class="col-md-1 control-label" for="award"><?php echo lang('gen_hamradio_award') ?></label>
|
<label class="col-md-1 control-label" for="award"><?php echo lang('gen_hamradio_award') ?></label>
|
||||||
<div class="col-md-3">
|
<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="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="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>
|
<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">
|
<div class="mb-3 row">
|
||||||
<label class="col-md-1 control-label" for="band">Band</label>
|
<label class="col-md-1 control-label" for="band">Band</label>
|
||||||
<div class="col-md-3">
|
<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>
|
<option value="All">All</option>
|
||||||
<?php foreach($worked_bands as $band) {
|
<?php foreach($worked_bands as $band) {
|
||||||
echo '<option value="' . $band . '">' . $band . '</option>'."\n";
|
echo '<option value="' . $band . '">' . $band . '</option>'."\n";
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
<label class="col-md-1 control-label" for="dxcc">DXCC</label>
|
<label class="col-md-1 control-label" for="dxcc">DXCC</label>
|
||||||
<div class="col-md-3">
|
<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>
|
<option value = 'All'>All</option>
|
||||||
<?php
|
<?php
|
||||||
if ($dxcc_list->num_rows() > 0) {
|
if ($dxcc_list->num_rows() > 0) {
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
<div class="mb-3 row">
|
<div class="mb-3 row">
|
||||||
<label class="col-md-1 control-label" for="cqzone">CQ Zone</label>
|
<label class="col-md-1 control-label" for="cqzone">CQ Zone</label>
|
||||||
<div class="col-md-3">
|
<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>
|
<option value = 'All'>All</option>
|
||||||
<?php
|
<?php
|
||||||
for ($i = 1; $i<=40; $i++) {
|
for ($i = 1; $i<=40; $i++) {
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用