| 
									
										
										
										
											2023-03-18 01:54:35 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <div class="container adif"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <h2><?php echo $page_title; ?></h2>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <div class="card"> | 
					
						
							|  |  |  |         <div class="card-header"> | 
					
						
							|  |  |  | 			<ul class="nav nav-tabs card-header-tabs pull-right" role="tablist"> | 
					
						
							|  |  |  | 				<li class="nav-item"> | 
					
						
							|  |  |  | 					<a class="nav-link active" id="export-tab" data-toggle="tab" href="#export" role="tab" aria-controls="import" aria-selected="true">Upload Logbook</a> | 
					
						
							|  |  |  | 				</li> | 
					
						
							|  |  |  | 				<li class="nav-item"> | 
					
						
							|  |  |  | 					<a class="nav-link" id="mark-tab" data-toggle="tab" href="#mark" role="tab" aria-controls="export" aria-selected="false">Mark QSOs</a> | 
					
						
							|  |  |  | 				</li> | 
					
						
							|  |  |  | 			</ul> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <div class="card-body"> | 
					
						
							|  |  |  | 			<div class="tab-content"> | 
					
						
							|  |  |  | 				<div class="tab-pane active" id="export" role="tabpanel" aria-labelledby="export-tab"> | 
					
						
							| 
									
										
										
										
											2023-03-21 03:47:37 +08:00
										 |  |  |             	<p>Here you can see and upload all QSOs which have not been previously uploaded to QO-100 Dx Club.</p> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-18 01:54:35 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <?php | 
					
						
							|  |  |  |             if ($station_profile->result()) { | 
					
						
							| 
									
										
										
										
											2023-06-30 04:05:04 +08:00
										 |  |  |                $queuedqsos = 0; | 
					
						
							|  |  |  |                foreach ($station_profile->result() as $count) {      // Fills the table with the data
 | 
					
						
							|  |  |  |                    $queuedqsos += $count->notcount; | 
					
						
							|  |  |  |                } | 
					
						
							|  |  |  |                if ($queuedqsos > 0) { | 
					
						
							| 
									
										
										
										
											2023-03-21 03:47:37 +08:00
										 |  |  | 				?>
 | 
					
						
							|  |  |  | 				<p>You need to set a QO-100 Dx Club API key in your station profile. Only station profiles with an API Key are displayed.</p> | 
					
						
							| 
									
										
										
										
											2023-03-21 14:43:46 +08:00
										 |  |  | 				<p><span class="badge badge-warning">Warning</span> This might take a while as QSO uploads are processed sequentially.</p> | 
					
						
							| 
									
										
										
										
											2023-03-21 03:47:37 +08:00
										 |  |  | 				<?php | 
					
						
							| 
									
										
										
										
											2023-03-18 01:54:35 +08:00
										 |  |  |             echo ' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             <table class="table table-bordered table-hover table-striped table-condensed text-center"> | 
					
						
							|  |  |  |                 <thead> | 
					
						
							|  |  |  |                 <tr> | 
					
						
							|  |  |  |                     <td>Profile name</td> | 
					
						
							|  |  |  |                     <td>Station callsign</td> | 
					
						
							|  |  |  |                     <td>Total QSOs not uploaded</td> | 
					
						
							|  |  |  |                     <td>Total QSOs uploaded</td> | 
					
						
							|  |  |  |                     <td>Actions</td> | 
					
						
							|  |  |  |                 </thead> | 
					
						
							|  |  |  |                 <tbody>'; | 
					
						
							|  |  |  |                 foreach ($station_profile->result() as $station) {      // Fills the table with the data
 | 
					
						
							| 
									
										
										
										
											2023-06-30 04:05:04 +08:00
										 |  |  |                    if ($station->notcount != null) { | 
					
						
							|  |  |  |                        echo '<tr>'; | 
					
						
							|  |  |  |                            echo '<td>' . $station->station_profile_name . '</td>'; | 
					
						
							|  |  |  |                            echo '<td>' . $station->station_callsign . '</td>'; | 
					
						
							|  |  |  |                            echo '<td id ="notcount'.$station->station_id.'">' . $station->notcount . '</td>'; | 
					
						
							|  |  |  |                            echo '<td id ="totcount'.$station->station_id.'">' . $station->totcount . '</td>'; | 
					
						
							| 
									
										
										
										
											2023-08-16 04:32:49 +08:00
										 |  |  |                            echo '<td><button id="webadifUpload" type="button" name="webadifUpload" class="btn btn-primary btn-sm ld-ext-right ld-ext-right-'.$station->station_id.'" onclick="ExportWebADIF('. $station->station_id .')"><i class="fas fa-cloud-upload-alt"></i> Upload<div class="ld ld-ring ld-spin"></div></button></td>'; | 
					
						
							| 
									
										
										
										
											2023-06-30 04:05:04 +08:00
										 |  |  |                        echo '</tr>'; | 
					
						
							|  |  |  |                    } | 
					
						
							| 
									
										
										
										
											2023-03-18 01:54:35 +08:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 echo '</tfoot></table>'; | 
					
						
							| 
									
										
										
										
											2023-06-30 04:05:04 +08:00
										 |  |  |                } else { | 
					
						
							|  |  |  |                   ?>
 | 
					
						
							|  |  |  |                   <div class="alert alert-success"> | 
					
						
							|  |  |  |                   There are currently no outstanding QSOs that need to be uploaded to the QO-100 Dx Club's API.<br /> | 
					
						
							|  |  |  |                   Go ahead and turn on your QO-100 station! | 
					
						
							|  |  |  |                   </div> | 
					
						
							|  |  |  |                   <?php | 
					
						
							|  |  |  |                } | 
					
						
							| 
									
										
										
										
											2023-03-18 01:54:35 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         else { | 
					
						
							| 
									
										
										
										
											2023-03-21 03:47:37 +08:00
										 |  |  | 			?>
 | 
					
						
							|  |  |  | 			<div class="alert alert-danger"> | 
					
						
							|  |  |  | 				None of your Logbooks are configured to export data to the QO-100 Dx Club's API.<br /> | 
					
						
							|  |  |  | 				To configure this feature, go to your profile page at the <a href="https://qo100dx.club" target="_blank">QO-100 Dx Club</a> and <strong>Create</strong> an API key. | 
					
						
							| 
									
										
										
										
											2023-03-27 22:05:34 +08:00
										 |  |  | 				Then, navigate to your <a href="<?php echo site_url('station');?>">Station Locations</a> and configure you station with the key you have created at the club. | 
					
						
							| 
									
										
										
										
											2023-03-21 03:47:37 +08:00
										 |  |  | 			</div> | 
					
						
							|  |  |  | 			<?php | 
					
						
							| 
									
										
										
										
											2023-03-18 01:54:35 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         </div> | 
					
						
							|  |  |  | 				<div class="tab-pane fade" id="mark" role="tabpanel" aria-labelledby="home-tab"> | 
					
						
							| 
									
										
										
										
											2023-03-21 03:47:37 +08:00
										 |  |  | 					<p>Here you can mark as uploaded your QSOs which have not been previously uploaded to QO-100 Dx Club.</p> | 
					
						
							|  |  |  | 				<?php | 
					
						
							|  |  |  | 				if ($station_profiles->result()!==[]){ | 
					
						
							|  |  |  | 				?>
 | 
					
						
							| 
									
										
										
										
											2023-03-18 01:54:35 +08:00
										 |  |  | 				<form class="form" action="<?php echo site_url('webadif/mark_webadif'); ?>" method="post" enctype="multipart/form-data"> | 
					
						
							|  |  |  | 					<select name="station_profile" class="custom-select mb-4 mr-sm-4" style="width: 30%;"> | 
					
						
							|  |  |  | 						<option value="0">Select Station Location</option> | 
					
						
							|  |  |  | 						<?php foreach ($station_profiles->result() as $station) { ?>
 | 
					
						
							|  |  |  | 							<option value="<?php echo $station->station_id; ?>">Callsign: <?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)</option>
 | 
					
						
							|  |  |  | 						<?php } ?>
 | 
					
						
							|  |  |  | 					</select> | 
					
						
							|  |  |  | 					<p><span class="badge badge-warning">Warning</span> If a date range is not selected then all QSOs will be marked!</p> | 
					
						
							|  |  |  | 					<p class="card-text">From date:</p> | 
					
						
							|  |  |  | 					<div class="row"> | 
					
						
							|  |  |  | 						<div class="input-group date col-md-3" id="datetimepicker5" data-target-input="nearest"> | 
					
						
							|  |  |  | 							<input name="from" type="text" placeholder="DD/MM/YYYY" class="form-control datetimepicker-input" data-target="#datetimepicker1"/> | 
					
						
							|  |  |  | 							<div class="input-group-append"  data-target="#datetimepicker5" data-toggle="datetimepicker"> | 
					
						
							|  |  |  | 								<div class="input-group-text"><i class="fa fa-calendar"></i></div> | 
					
						
							|  |  |  | 							</div> | 
					
						
							|  |  |  | 						</div> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 					<p class="card-text">To date:</p> | 
					
						
							|  |  |  | 					<div class="row"> | 
					
						
							|  |  |  | 						<div class="input-group date col-md-3" id="datetimepicker6" data-target-input="nearest"> | 
					
						
							| 
									
										
										
										
											2023-11-12 23:25:54 +08:00
										 |  |  | 							<input name="to" type="text" placeholder="DD/MM/YYYY" class="form-control datetimepicker-input" data-target="#datetimepicker2"/> | 
					
						
							| 
									
										
										
										
											2023-03-18 01:54:35 +08:00
										 |  |  | 							<div class="input-group-append" data-target="#datetimepicker6" data-toggle="datetimepicker"> | 
					
						
							|  |  |  | 								<div class="input-group-text"><i class="fa fa-calendar"></i></div> | 
					
						
							|  |  |  | 							</div> | 
					
						
							|  |  |  | 						</div> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 					<br> | 
					
						
							|  |  |  | 					<button type="button" id="markWebAdifAsExported" class="btn-sm btn-primary" value="Export">Mark QSOs as exported to QO-100 Dx Club</button> | 
					
						
							|  |  |  | 				</form> | 
					
						
							| 
									
										
										
										
											2023-03-21 03:47:37 +08:00
										 |  |  | 				<?php | 
					
						
							|  |  |  | 				}else{ | 
					
						
							|  |  |  | 				?>
 | 
					
						
							|  |  |  | 					<div class="alert alert-danger"> | 
					
						
							|  |  |  | 						None of your Logbooks are configured to export data to the QO-100 Dx Club's API.<br /> | 
					
						
							|  |  |  | 						To configure this feature, go to your profile page at the <a href="https://qo100dx.club" target="_blank">QO-100 Dx Club</a> and <strong>Create</strong> an API key. | 
					
						
							|  |  |  | 						Then, navigate to your <a href="<?php echo site_url('stations');?>">Station Locations</a> and configure you station with the key you have created at the club. | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 				<?php | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				?>
 | 
					
						
							| 
									
										
										
										
											2023-03-18 01:54:35 +08:00
										 |  |  | 	</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 	</div> | 
					
						
							|  |  |  | </div> |