99 行
		
	
	
		
			无行尾
		
	
	
		
			6.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			99 行
		
	
	
		
			无行尾
		
	
	
		
			6.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <div class="container custom-map-QSOs">
 | |
|     <br>
 | |
|     <h2><?php echo $logbook_name ?> logbook QSOs (Custom Date)</h2>
 | |
| 
 | |
|     <?php if ($this->session->flashdata('notice')) { ?>
 | |
|         <div class="alert alert-info" role="alert">
 | |
|             <?php echo $this->session->flashdata('notice'); ?>
 | |
|         </div>
 | |
|     <?php } ?>
 | |
| 
 | |
|     <form method="post" action="<?php echo site_url('map/custom'); ?>">
 | |
|         <div class="row">
 | |
|             <div class="mb-3 col-md-3">
 | |
|                 <label for="from"><?php echo lang('gen_from_date') . ": " ?></label>
 | |
|                 <input name="from" id="from" type="date" class="form-control w-auto" value="<?php echo $date_from; ?>">
 | |
|             </div>
 | |
| 
 | |
|             <div class="mb-3 col-md-3">
 | |
|                 <label for="to"><?php echo lang('gen_to_date') . ": " ?></label>
 | |
|                 <input name="to" id="to" type="date" class="form-control w-auto" value="<?php echo $date_to; ?>" max="<?php echo $date_to; ?>">
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
|         <div class="row">
 | |
|             <div class="mb-3 col-md-3">
 | |
|                 <label for="band">Band</label>
 | |
|                 <select id="band2" name="band" class="form-select">
 | |
|                     <option value="All" <?php if ($this->input->post('band') == "All" || $this->input->method() !== 'post') echo ' selected'; ?>>Every band</option>
 | |
|                     <?php foreach ($worked_bands as $band) {
 | |
|                         echo '<option value="' . $band . '"';
 | |
|                         if ($this->input->post('band') == $band) echo ' selected';
 | |
|                         echo '>' . $band . '</option>' . "\n";
 | |
|                     } ?>
 | |
|                 </select>
 | |
|             </div>
 | |
| 
 | |
| 
 | |
|             <div class="mb-3 col-md-3">
 | |
|                 <label for="mode">Mode</label>
 | |
|                 <select id="mode" name="mode" class="form-select">
 | |
|                     <option value="All" <?php if ($this->input->post('mode') == "All" || $this->input->method() !== 'post') echo ' selected'; ?>>All</option>
 | |
|                     <?php
 | |
|                     foreach ($modes->result() as $mode) {
 | |
|                         if ($mode->submode == null) {
 | |
|                             echo '<option value="' . $mode->mode . '"';
 | |
|                             if ($this->input->post('mode') == $mode->mode) echo ' selected';
 | |
|                             echo '>' . $mode->mode . '</option>' . "\n";
 | |
|                         } else {
 | |
|                             echo '<option value="' . $mode->submode . '"';
 | |
|                             if ($this->input->post('mode') == $mode->submode) echo ' selected';
 | |
|                             echo '>' . $mode->submode . '</option>' . "\n";
 | |
|                         }
 | |
|                     }
 | |
|                     ?>
 | |
|                 </select>
 | |
|             </div>
 | |
| 
 | |
|             <div class="mb-3 col-md-3">
 | |
|                 <label for="selectPropagation">Propagation Mode</label>
 | |
|                 <select class="form-select" id="selectPropagation" name="prop_mode">
 | |
|                     <option value="All" <?php if ($this->input->post('prop_mode') == "All" || $this->input->method() !== 'post') echo ' selected'; ?>>All</option>
 | |
|                     <option value="AS" <?php if ($this->input->post('prop_mode') == "AS") echo ' selected'; ?>>Aircraft Scatter</option>
 | |
|                     <option value="AUR" <?php if ($this->input->post('prop_mode') == "AUR") echo ' selected'; ?>>Aurora</option>
 | |
|                     <option value="AUE" <?php if ($this->input->post('prop_mode') == "AUE") echo ' selected'; ?>>Aurora-E</option>
 | |
|                     <option value="BS" <?php if ($this->input->post('prop_mode') == "BS") echo ' selected'; ?>>Back scatter</option>
 | |
|                     <option value="ECH" <?php if ($this->input->post('prop_mode') == "ECH") echo ' selected'; ?>>EchoLink</option>
 | |
|                     <option value="EME" <?php if ($this->input->post('prop_mode') == "EME") echo ' selected'; ?>>Earth-Moon-Earth</option>
 | |
|                     <option value="ES" <?php if ($this->input->post('prop_mode') == "ES") echo ' selected'; ?>>Sporadic E</option>
 | |
|                     <option value="FAI" <?php if ($this->input->post('prop_mode') == "FAI") echo ' selected'; ?>>Field Aligned Irregularities</option>
 | |
|                     <option value="F2" <?php if ($this->input->post('prop_mode') == "F2") echo ' selected'; ?>>F2 Reflection</option>
 | |
|                     <option value="INTERNET" <?php if ($this->input->post('prop_mode') == "INTERNET") echo ' selected'; ?>>Internet-assisted</option>
 | |
|                     <option value="ION" <?php if ($this->input->post('prop_mode') == "ION") echo ' selected'; ?>>Ionoscatter</option>
 | |
|                     <option value="IRL" <?php if ($this->input->post('prop_mode') == "IRL") echo ' selected'; ?>>IRLP</option>
 | |
|                     <option value="MS" <?php if ($this->input->post('prop_mode') == "MS") echo ' selected'; ?>>Meteor scatter</option>
 | |
|                     <option value="RPT" <?php if ($this->input->post('prop_mode') == "RPT") echo ' selected'; ?>>Terrestrial or atmospheric repeater or transponder</option>
 | |
|                     <option value="RS" <?php if ($this->input->post('prop_mode') == "RS") echo ' selected'; ?>>Rain scatter</option>
 | |
|                     <option value="SAT" <?php if ($this->input->post('prop_mode') == "SAT") echo ' selected'; ?>>Satellite</option>
 | |
|                     <option value="TEP" <?php if ($this->input->post('prop_mode') == "TEP") echo ' selected'; ?>>Trans-equatorial</option>
 | |
|                     <option value="TR" <?php if ($this->input->post('prop_mode') == "TR") echo ' selected'; ?>>Tropospheric ducting</option>
 | |
|                 </select>
 | |
|             </div>
 | |
|         </div>
 | |
| 
 | |
|         <div class="row">
 | |
|             <div class="mb-1 col-md-1">
 | |
|                 <input class="btn btn-primary btn_submit_map_custom" type="button" value="Load Map">
 | |
|             </div>
 | |
|             <div class="mb-4 col-md-4">
 | |
|                 <div class="alert alert-danger warningOnSubmit" style="display:none;"><span><i class="fas fa-times-circle"></i></span> <span class="warningOnSubmit_txt ms-1">Error</span></div>
 | |
|             </div>
 | |
|         </div>
 | |
|     </form>
 | |
| 
 | |
| </div>
 | |
| 
 | |
| <!-- Map -->
 | |
| <div id="custommap" class="map-leaflet mt-2" style="width: 100%; height: 1000px;"></div>
 | |
| 
 | |
| <div class="alert alert-success" role="alert">Showing QSOs for Custom Date for Active Logbook <?php echo $logbook_name ?></div>
 |