| 
									
										
										
										
											2020-05-17 20:57:28 +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>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-17 20:57:28 +08:00
										 |  |  | <div class="card"> | 
					
						
							|  |  |  |   <div class="card-header"> | 
					
						
							| 
									
										
										
										
											2020-10-20 22:51:55 +08:00
										 |  |  |     Modes | 
					
						
							| 
									
										
										
										
											2020-05-17 20:57:28 +08:00
										 |  |  |   </div> | 
					
						
							|  |  |  |   <div class="card-body"> | 
					
						
							| 
									
										
										
										
											2020-10-29 02:03:30 +08:00
										 |  |  |     <p class="card-text"> | 
					
						
							|  |  |  | 		Using the modes list you can control which modes are shown when creating a new QSO. | 
					
						
							|  |  |  | 	</p> | 
					
						
							|  |  |  |     <p class="card-text"> | 
					
						
							|  |  |  | 		Active modes will be shown in the QSO "Mode" drop-down, while inactive modes will be hidden and cannot be selected. | 
					
						
							|  |  |  | 	</p> | 
					
						
							| 
									
										
										
										
											2020-08-19 23:19:56 +08:00
										 |  |  |     <div class="table-responsive"> | 
					
						
							| 
									
										
										
										
											2020-10-13 02:45:48 +08:00
										 |  |  | 		<table style="width:100%" class="modetable table table-striped"> | 
					
						
							| 
									
										
										
										
											2020-05-17 20:57:28 +08:00
										 |  |  | 			<thead> | 
					
						
							|  |  |  | 				<tr> | 
					
						
							| 
									
										
										
										
											2022-08-29 02:02:07 +08:00
										 |  |  | 					<th class="select-filter" scope="col">Mode</th> | 
					
						
							|  |  |  | 					<th class="select-filter" scope="col">Sub-Mode</th> | 
					
						
							|  |  |  | 					<th class="select-filter" scope="col">SSB / DATA / CW</th> | 
					
						
							|  |  |  | 					<th class="select-filter" scope="col">Status</th> | 
					
						
							| 
									
										
										
										
											2020-10-13 02:45:48 +08:00
										 |  |  |                     <th scope="col"></th> | 
					
						
							| 
									
										
										
										
											2020-05-17 20:57:28 +08:00
										 |  |  | 					<th scope="col"></th> | 
					
						
							|  |  |  | 					<th scope="col"></th> | 
					
						
							|  |  |  | 				</tr> | 
					
						
							|  |  |  | 			</thead> | 
					
						
							|  |  |  | 			<tbody> | 
					
						
							|  |  |  | 				<?php foreach ($modes->result() as $row) { ?>
 | 
					
						
							|  |  |  | 				<tr> | 
					
						
							| 
									
										
										
										
											2020-05-24 06:06:08 +08:00
										 |  |  | 					<td><?php echo $row->mode;?></td>
 | 
					
						
							|  |  |  | 					<td><?php echo $row->submode;?></td>
 | 
					
						
							| 
									
										
										
										
											2020-05-17 20:57:28 +08:00
										 |  |  | 					<td><?php echo $row->qrgmode;?></td>
 | 
					
						
							| 
									
										
										
										
											2020-10-10 00:29:41 +08:00
										 |  |  |                     <td class='mode_<?php echo $row->id ?>'><?php if ($row->active == 1) { echo "active";} else { echo "not active";};?></td>
 | 
					
						
							| 
									
										
										
										
											2020-10-26 16:58:49 +08:00
										 |  |  |                     <td style="text-align: center"> | 
					
						
							| 
									
										
										
										
											2020-10-10 00:29:41 +08:00
										 |  |  |                         <?php if ($row->active == 1) { | 
					
						
							| 
									
										
										
										
											2020-10-26 16:58:49 +08:00
										 |  |  |                             echo "<button onclick='javascript:deactivateMode(". $row->id . ")' class='btn_" . $row->id . " btn btn-secondary btn-sm'>Deactivate</button>"; | 
					
						
							| 
									
										
										
										
											2020-10-10 00:29:41 +08:00
										 |  |  |                         } else { | 
					
						
							| 
									
										
										
										
											2020-10-26 16:58:49 +08:00
										 |  |  |                             echo "<button onclick='javascript:activateMode(". $row->id . ")' class='btn_" . $row->id . " btn btn-primary btn-sm'>Activate</button>"; | 
					
						
							| 
									
										
										
										
											2020-10-10 00:29:41 +08:00
										 |  |  |                         };?>
 | 
					
						
							|  |  |  |                     </td> | 
					
						
							| 
									
										
										
										
											2020-05-17 20:57:28 +08:00
										 |  |  | 					<td> | 
					
						
							| 
									
										
										
										
											2020-10-26 16:58:49 +08:00
										 |  |  | 						<a href="<?php echo site_url('mode/edit')."/".$row->id; ?>" class="btn btn-outline-primary btn-sm"><i class="fas fa-edit"></i> Edit</a> | 
					
						
							| 
									
										
										
										
											2020-05-17 20:57:28 +08:00
										 |  |  | 					</td> | 
					
						
							|  |  |  | 					<td> | 
					
						
							| 
									
										
										
										
											2020-10-13 18:38:44 +08:00
										 |  |  | 						<a href="javascript:deleteMode('<?php echo $row->id; ?>', '<?php echo $row->mode; ?>');" class="btn btn-danger btn-sm" ><i class="fas fa-trash-alt"></i> Delete</a> | 
					
						
							| 
									
										
										
										
											2020-10-10 00:29:41 +08:00
										 |  |  |                     </td> | 
					
						
							| 
									
										
										
										
											2020-05-17 20:57:28 +08:00
										 |  |  | 				</tr> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				<?php } ?>
 | 
					
						
							|  |  |  | 			</tbody> | 
					
						
							| 
									
										
										
										
											2022-08-29 01:27:24 +08:00
										 |  |  | 			<tfoot> | 
					
						
							|  |  |  | 				<tr> | 
					
						
							| 
									
										
										
										
											2022-08-29 02:02:07 +08:00
										 |  |  | 					<th></th> | 
					
						
							|  |  |  | 					<th></th> | 
					
						
							|  |  |  | 					<th></th> | 
					
						
							|  |  |  | 					<th></th> | 
					
						
							|  |  |  | 					<th></th> | 
					
						
							|  |  |  | 					<th></th> | 
					
						
							|  |  |  | 					<th></th> | 
					
						
							| 
									
										
										
										
											2022-08-29 01:27:24 +08:00
										 |  |  | 				</tr> | 
					
						
							|  |  |  | 			</tfoot> | 
					
						
							| 
									
										
										
										
											2020-05-17 20:57:28 +08:00
										 |  |  | 		<table> | 
					
						
							| 
									
										
										
										
											2022-08-29 02:02:07 +08:00
										 |  |  | 	</div> | 
					
						
							| 
									
										
										
										
											2020-10-26 16:58:49 +08:00
										 |  |  |   <br/> | 
					
						
							| 
									
										
										
										
											2021-10-24 01:55:57 +08:00
										 |  |  |   <p> | 
					
						
							|  |  |  | 	  	<button onclick="createModeDialog();" class="btn btn-primary btn-sm"><i class="fas fa-plus"></i> Create a Mode</button> | 
					
						
							|  |  |  |   		<button onclick="activateAllModes();" class="btn btn-primary btn-sm">Activate All</button> | 
					
						
							|  |  |  | 		<button onclick="deactivateAllModes();" class="btn btn-primary btn-sm">Deactivate All </button> | 
					
						
							|  |  |  | 	</p> | 
					
						
							| 
									
										
										
										
											2020-05-17 20:57:28 +08:00
										 |  |  | </div> | 
					
						
							| 
									
										
										
										
											2020-10-29 02:03:30 +08:00
										 |  |  | </div> |