| 
									
										
										
										
											2023-06-03 00:50:27 +08:00
										 |  |  | <div class="container"> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <br> | 
					
						
							|  |  |  | 	<?php if($this->session->flashdata('message')) { ?>
 | 
					
						
							|  |  |  | 		<!-- Display Message --> | 
					
						
							| 
									
										
										
										
											2023-06-04 00:22:11 +08:00
										 |  |  | 		<div class="alert alert-success" role="alert"> | 
					
						
							|  |  |  | 		  <?php echo $this->session->flashdata('message'); ?>
 | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 	<?php } ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<?php if($this->session->flashdata('error')) { ?>
 | 
					
						
							|  |  |  | 		<!-- Display Message --> | 
					
						
							|  |  |  | 		<div class="alert alert-danger" role="alert"> | 
					
						
							|  |  |  | 		  <?php echo $this->session->flashdata('error'); ?>
 | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 	<?php } ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<?php if($this->session->flashdata('warning')) { ?>
 | 
					
						
							|  |  |  | 		<!-- Display Message --> | 
					
						
							|  |  |  | 		<div class="alert alert-warning" role="alert"> | 
					
						
							|  |  |  | 		  <?php echo $this->session->flashdata('warning'); ?>
 | 
					
						
							| 
									
										
										
										
											2023-06-03 00:50:27 +08:00
										 |  |  | 		</div> | 
					
						
							|  |  |  | 	<?php } ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <div class="card"> | 
					
						
							|  |  |  | 	<h2 class="card-header">QSL Card Labels</h2> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<div class="card-body"> | 
					
						
							| 
									
										
										
										
											2023-10-18 03:04:57 +08:00
										 |  |  | 	<a href="<?php echo site_url('labels/create'); ?>" class="btn btn-primary btn-sm"><i class="fas fa-plus"> </i> Create New Label Type</a> | 
					
						
							|  |  |  | 	<a href="<?php echo site_url('labels/createpaper'); ?>" class="btn btn-primary btn-sm"><i class="fas fa-plus"> </i> Create New Paper Type</a> | 
					
						
							| 
									
										
										
										
											2023-08-02 16:05:24 +08:00
										 |  |  | <br><br> | 
					
						
							|  |  |  | 	<?php if ($papertypes) { ?>
 | 
					
						
							|  |  |  | 		<h4>Paper types</h4> | 
					
						
							|  |  |  | 						<table style="width:100%" class="table-sm labeltable table-bordered table-hover table-striped table-condensed text-center"> | 
					
						
							|  |  |  | 						<thead> | 
					
						
							|  |  |  | 							<tr> | 
					
						
							|  |  |  | 								<th>Name</th> | 
					
						
							|  |  |  | 								<th>Measurement</th> | 
					
						
							|  |  |  | 								<th>Width</th> | 
					
						
							|  |  |  | 								<th>Height</th> | 
					
						
							| 
									
										
										
										
											2023-08-03 14:15:51 +08:00
										 |  |  | 								<th>Used by labels</th> | 
					
						
							|  |  |  | 								<th>Orientation</th> | 
					
						
							| 
									
										
										
										
											2023-08-02 16:05:24 +08:00
										 |  |  | 								<th>Edit</th> | 
					
						
							|  |  |  | 								<th>Delete</th> | 
					
						
							|  |  |  | 							</tr> | 
					
						
							|  |  |  | 						</thead> | 
					
						
							|  |  |  | 						<tbody> | 
					
						
							|  |  |  | 						<?php | 
					
						
							|  |  |  | 		foreach($papertypes as $paper) { ?>
 | 
					
						
							| 
									
										
										
										
											2023-08-03 19:24:05 +08:00
										 |  |  | 			<tr class='paper_<?php echo $paper->paper_id ?>'> | 
					
						
							| 
									
										
										
										
											2023-08-02 16:05:24 +08:00
										 |  |  | 			<td><?php echo $paper->paper_name; ?></td>
 | 
					
						
							|  |  |  | 			<td><?php echo $paper->metric; ?></td>
 | 
					
						
							|  |  |  | 			<td><?php echo $paper->width; ?></td>
 | 
					
						
							|  |  |  | 			<td><?php echo $paper->height; ?></td>
 | 
					
						
							| 
									
										
										
										
											2023-08-03 14:15:51 +08:00
										 |  |  | 			<td><?php echo $paper->lbl_cnt ?? '0' ?></td>
 | 
					
						
							| 
									
										
										
										
											2023-08-03 18:27:17 +08:00
										 |  |  | 			<td><?php echo $paper->orientation == 'P' ? 'Portrait': 'Landscape'; ?></td>
 | 
					
						
							| 
									
										
										
										
											2023-08-03 12:37:25 +08:00
										 |  |  | 			<td><a href="<?php echo site_url('labels/editpaper/' . $paper->paper_id); ?>" class="btn btn-outline-primary btn-sm"><i class="fas fa-edit"></i></a></td> | 
					
						
							| 
									
										
										
										
											2023-08-03 19:24:05 +08:00
										 |  |  | 			<td><a href="javascript:deletepaper(<?php echo $paper->paper_id; ?>);" class="btn btn-outline-danger btn-sm"><i class="fas fa-trash-alt"></i></a></td> | 
					
						
							| 
									
										
										
										
											2023-08-02 16:05:24 +08:00
										 |  |  | 			</tr> | 
					
						
							| 
									
										
										
										
											2023-07-30 02:02:18 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-02 16:05:24 +08:00
										 |  |  | 		<?php } | 
					
						
							|  |  |  | 		echo '</tbody></table>'; | 
					
						
							|  |  |  | 	} ?>
 | 
					
						
							| 
									
										
										
										
											2023-06-03 00:50:27 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-02 16:05:24 +08:00
										 |  |  | 	<?php if ($labels) { ?>
 | 
					
						
							|  |  |  | 		<br> | 
					
						
							|  |  |  | 		<h4>Label types</h4> | 
					
						
							| 
									
										
										
										
											2023-06-03 00:50:27 +08:00
										 |  |  | 						<table style="width:100%" class="table-sm labeltable table-bordered table-hover table-striped table-condensed text-center"> | 
					
						
							|  |  |  | 						<thead> | 
					
						
							|  |  |  | 							<tr> | 
					
						
							|  |  |  | 								<th>Name</th> | 
					
						
							|  |  |  | 								<th>Paper Type</th> | 
					
						
							|  |  |  | 								<th>Measurement</th> | 
					
						
							|  |  |  | 								<th>Width</th> | 
					
						
							|  |  |  | 								<th>Height</th> | 
					
						
							|  |  |  | 								<th>Font Size</th> | 
					
						
							|  |  |  | 								<th>QSOs</th> | 
					
						
							|  |  |  | 								<th>Use For Print</th> | 
					
						
							|  |  |  | 								<th>Edit</th> | 
					
						
							|  |  |  | 								<th>Delete</th> | 
					
						
							|  |  |  | 							</tr> | 
					
						
							|  |  |  | 						</thead> | 
					
						
							|  |  |  | 						<tbody> | 
					
						
							|  |  |  | 						<?php | 
					
						
							|  |  |  | 		foreach($labels as $label) { ?>
 | 
					
						
							|  |  |  | 			<tr class='label_<?php echo $label->id ?>'> | 
					
						
							|  |  |  | 			<td><?php echo $label->label_name; ?></td>
 | 
					
						
							| 
									
										
										
										
											2023-11-14 20:35:53 +08:00
										 |  |  | 			<td><?php echo $label->paper_name ?? '<span class="badge text-bg-danger">No paper assigned</span>' ?></td>
 | 
					
						
							| 
									
										
										
										
											2023-06-03 00:50:27 +08:00
										 |  |  | 			<td><?php echo $label->metric; ?></td>
 | 
					
						
							|  |  |  | 			<td><?php echo $label->width; ?></td>
 | 
					
						
							|  |  |  | 			<td><?php echo $label->height; ?></td>
 | 
					
						
							|  |  |  | 			<td><?php echo $label->font_size; ?></td>
 | 
					
						
							|  |  |  | 			<td><?php echo $label->qsos; ?></td>
 | 
					
						
							| 
									
										
										
										
											2023-08-03 16:55:16 +08:00
										 |  |  | 			<?php if (($label->paper_name ?? '') == '') { ?>
 | 
					
						
							|  |  |  | 			<td></td> | 
					
						
							|  |  |  | 			<?php } else { ?>
 | 
					
						
							| 
									
										
										
										
											2023-06-03 00:50:27 +08:00
										 |  |  | 			<td><input type="checkbox" <?php if ($label->useforprint == 1) {echo 'checked';}?>></td>
 | 
					
						
							| 
									
										
										
										
											2023-08-03 16:55:16 +08:00
										 |  |  | 			<?php } ?>
 | 
					
						
							| 
									
										
										
										
											2023-06-03 00:50:27 +08:00
										 |  |  | 			<td><a href="<?php echo site_url('labels/edit/' . $label->id); ?>" class="btn btn-outline-primary btn-sm"><i class="fas fa-edit"></i></a></td> | 
					
						
							| 
									
										
										
										
											2023-08-03 19:24:05 +08:00
										 |  |  | 			<td><a href="javascript:deletelabel(<?php echo $label->id; ?>);" class="btn btn-outline-danger btn-sm"><i class="fas fa-trash-alt"></i></a></td> | 
					
						
							| 
									
										
										
										
											2023-06-03 00:50:27 +08:00
										 |  |  | 			</tr> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		<?php } | 
					
						
							|  |  |  | 		echo '</tbody></table>'; | 
					
						
							|  |  |  | 	} ?>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <br><br> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | <div class="card"> | 
					
						
							|  |  |  | 	<h2 class="card-header">QSL Card Labels Pending</h2> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	<div class="card-body"> | 
					
						
							|  |  |  | 	<table style="width:100%" class="table-sm table table-bordered table-hover table-striped table-condensed text-center"> | 
					
						
							|  |  |  | 				<thead> | 
					
						
							|  |  |  | 					<tr> | 
					
						
							|  |  |  | 						<th>Callsign</th> | 
					
						
							|  |  |  | 						<th>Station Location</th> | 
					
						
							|  |  |  | 						<th>Gridsquare</th> | 
					
						
							| 
									
										
										
										
											2023-06-06 23:36:30 +08:00
										 |  |  | 						<th>QSOs Waiting</th> | 
					
						
							| 
									
										
										
										
											2023-06-03 00:50:27 +08:00
										 |  |  | 						<th>View QSOs</th> | 
					
						
							|  |  |  | 						<th>Print</th> | 
					
						
							|  |  |  | 					</tr> | 
					
						
							|  |  |  | 				</thead> | 
					
						
							|  |  |  | 				<tbody> | 
					
						
							|  |  |  | 					<?php foreach ($qsos as $qso) { | 
					
						
							|  |  |  | 						echo '<tr>'; | 
					
						
							|  |  |  | 						echo '<td>' . $qso->station_callsign . '</td>'; | 
					
						
							|  |  |  | 						echo '<td>' . $qso->station_profile_name . '</td>'; | 
					
						
							|  |  |  | 						echo '<td>' . $qso->station_gridsquare . '</td>'; | 
					
						
							|  |  |  | 						echo '<td>' . $qso->count . '</td>'; | 
					
						
							| 
									
										
										
										
											2023-08-03 19:15:02 +08:00
										 |  |  | 						echo '<td><a href="'. site_url('qslprint') . '/index/'.$qso->station_id.'" class="btn btn-outline-info btn-sm"><i class="fas fa-search"></i></a></td>'; | 
					
						
							| 
									
										
										
										
											2023-07-30 02:02:18 +08:00
										 |  |  | 						echo '<td><button class="btn btn-outline-success btn-sm printbutton" onclick="printat('.$qso->station_id.')"><i class="fas fa-print"></i></button></td>'; | 
					
						
							| 
									
										
										
										
											2023-06-03 00:50:27 +08:00
										 |  |  | 						echo '</tr>'; | 
					
						
							|  |  |  | 					} ?>
 | 
					
						
							|  |  |  | 				</tbody> | 
					
						
							|  |  |  | 		</table> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	</div> | 
					
						
							|  |  |  | </div> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-30 02:02:18 +08:00
										 |  |  | </div> |