| 
									
										
										
										
											2019-08-29 03:13:24 +08:00
										 |  |  | <div class="container"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<br> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<?php if($this->session->flashdata('message')) { ?>
 | 
					
						
							|  |  |  | 			<!-- Display Message --> | 
					
						
							|  |  |  | 			<div class="alert-message error"> | 
					
						
							|  |  |  | 			  <p><?php echo $this->session->flashdata('message'); ?></p>
 | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		<?php } ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-20 22:51:55 +08:00
										 |  |  | 	<h2><?php echo $page_title; ?></h2>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-29 03:13:24 +08:00
										 |  |  | 	<div class="card"> | 
					
						
							|  |  |  | 	  <div class="card-header"> | 
					
						
							| 
									
										
										
										
											2020-10-21 04:49:05 +08:00
										 |  |  | 	    Export Requested QSLs for Printing | 
					
						
							| 
									
										
										
										
											2019-08-29 03:13:24 +08:00
										 |  |  | 	  </div> | 
					
						
							| 
									
										
										
										
											2021-05-22 14:45:24 +08:00
										 |  |  | 		<div class="card-body"> | 
					
						
							|  |  |  | 			<form class="form" action="<?php echo site_url('adif/import'); ?>" method="post" enctype="multipart/form-data"> | 
					
						
							| 
									
										
										
										
											2023-05-14 19:45:10 +08:00
										 |  |  | 				<?php echo lang('cloudlog_station_profile'); ?>:
 | 
					
						
							| 
									
										
										
										
											2023-11-14 20:35:53 +08:00
										 |  |  | 				<select name="station_profile" class="station_id form-select mb-3 me-sm-3" style="width: 20%;"> | 
					
						
							| 
									
										
										
										
											2021-07-22 23:16:49 +08:00
										 |  |  | 					<option value="All">All</option> | 
					
						
							| 
									
										
										
										
											2021-05-22 14:45:24 +08:00
										 |  |  | 					<?php foreach ($station_profile->result() as $station) { ?>
 | 
					
						
							| 
									
										
										
										
											2023-08-03 19:15:02 +08:00
										 |  |  | 						<option <?php if ($station->station_id == $station_id) { echo "selected "; } ?>value="<?php echo $station->station_id; ?>">Callsign: <?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)</option>
 | 
					
						
							| 
									
										
										
										
											2021-05-22 14:45:24 +08:00
										 |  |  | 					<?php } ?>
 | 
					
						
							|  |  |  | 				</select> | 
					
						
							|  |  |  | 			</form> | 
					
						
							| 
									
										
										
										
											2021-05-08 16:29:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-20 22:51:55 +08:00
										 |  |  | 	    <p class="card-text">Here you can export requested QSLs as CSV or ADIF files for printing and, optionally, mark them as sent via bureau.</p> | 
					
						
							|  |  |  | 	    <p class="card-text">Requested QSLs are any QSOs with a value of "Requested" or "Queued" in their "QSL Sent" field.</p> | 
					
						
							| 
									
										
										
										
											2020-10-26 16:58:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-26 23:29:28 +08:00
										 |  |  | 		<div class="resulttable"> | 
					
						
							|  |  |  | 		<?php  | 
					
						
							|  |  |  | 			$data2['qsos'] = $qsos; | 
					
						
							|  |  |  | 			$this->load->view('qslprint/qslprint', $data2);  | 
					
						
							|  |  |  | 		?>
 | 
					
						
							|  |  |  | 			</div> | 
					
						
							| 
									
										
										
										
											2021-07-22 23:16:49 +08:00
										 |  |  | 		</div> | 
					
						
							| 
									
										
										
										
											2019-08-29 03:13:24 +08:00
										 |  |  | 	</div> | 
					
						
							| 
									
										
										
										
											2023-08-03 19:15:02 +08:00
										 |  |  | </div> |