| 
									
										
										
										
											2020-02-09 20:20:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | <div class="container"> | 
					
						
							|  |  |  |     <h1><?php echo $page_title; ?></h1>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <!-- Sub Nav for Awards --> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <?php $this->load->view("awards/nav_bar")?>
 | 
					
						
							| 
									
										
										
										
											2020-03-29 07:36:18 +08:00
										 |  |  |     <form class="form" action="<?php echo site_url('awards/was'); ?>" method="post" enctype="multipart/form-data"> | 
					
						
							|  |  |  |         <fieldset> | 
					
						
							| 
									
										
										
										
											2020-02-09 20:20:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-29 07:36:18 +08:00
										 |  |  |             <!-- Multiple Checkboxes (inline) --> | 
					
						
							|  |  |  |             <div class="form-group row"> | 
					
						
							|  |  |  |                 <div class="col-md-2" for="checkboxes">Worked / confirmed</div> | 
					
						
							|  |  |  |                 <div class="col-md-10"> | 
					
						
							|  |  |  |                     <div class="form-check-inline"> | 
					
						
							|  |  |  |                         <input class="form-check-input" type="checkbox" name="worked" id="worked" value="1" <?php if ($this->input->post('worked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> >
 | 
					
						
							|  |  |  |                         <label class="form-check-label" for="worked">Show worked</label> | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  |                     <div class="form-check-inline"> | 
					
						
							|  |  |  |                         <input class="form-check-input" type="checkbox" name="confirmed" id="confirmed" value="1" <?php if ($this->input->post('confirmed') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> >
 | 
					
						
							|  |  |  |                         <label class="form-check-label" for="confirmed">Show confirmed</label> | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  |                     <div class="form-check-inline"> | 
					
						
							|  |  |  |                         <input class="form-check-input" type="checkbox" name="notworked" id="notworked" value="1" <?php if ($this->input->post('notworked') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> >
 | 
					
						
							|  |  |  |                         <label class="form-check-label" for="notworked">Show not worked</label> | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             <div class="form-group row"> | 
					
						
							|  |  |  |                 <div class="col-md-2">QSL / LoTW</div> | 
					
						
							|  |  |  |                 <div class="col-md-10"> | 
					
						
							|  |  |  |                     <div class="form-check-inline"> | 
					
						
							|  |  |  |                         <input class="form-check-input" type="checkbox" name="qsl" value="1" id="qsl" <?php if ($this->input->post('qsl') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> >
 | 
					
						
							|  |  |  |                         <label class="form-check-label" for="qsl">QSL</label> | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  |                     <div class="form-check-inline"> | 
					
						
							|  |  |  |                         <input class="form-check-input" type="checkbox" name="lotw" value="1" id="lotw" <?php if ($this->input->post('lotw') || $this->input->method() !== 'post') echo ' checked="checked"'; ?> >
 | 
					
						
							|  |  |  |                         <label class="form-check-label" for="lotw">LoTW</label> | 
					
						
							|  |  |  |                     </div> | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             <!-- Select Basic --> | 
					
						
							|  |  |  |             <div class="form-group row"> | 
					
						
							|  |  |  |                 <label class="col-md-2 control-label" for="band">Band</label> | 
					
						
							|  |  |  |                 <div class="col-md-2"> | 
					
						
							|  |  |  |                     <select id="band2" name="band" class="form-control"> | 
					
						
							|  |  |  |                         <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> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             <!-- Button (Double) --> | 
					
						
							|  |  |  |             <div class="form-group row"> | 
					
						
							|  |  |  |                 <label class="col-md-2 control-label" for="button1id"></label> | 
					
						
							|  |  |  |                 <div class="col-md-10"> | 
					
						
							|  |  |  |                     <button id="button2id" type="reset" name="button2id" class="btn btn-danger">Reset</button> | 
					
						
							|  |  |  |                     <button id="button1id" type="submit" name="button1id" class="btn btn-success btn-primary">Show</button> | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             </div> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         </fieldset> | 
					
						
							|  |  |  |     </form> | 
					
						
							|  |  |  | <?php | 
					
						
							|  |  |  |     if ($was_array) { | 
					
						
							|  |  |  |     echo ' | 
					
						
							|  |  |  |     <table class="table table-bordered table-hover table-striped table-condensed text-center"> | 
					
						
							| 
									
										
										
										
											2020-02-09 20:20:59 +08:00
										 |  |  |         <thead> | 
					
						
							|  |  |  |         <tr> | 
					
						
							| 
									
										
										
										
											2020-03-29 07:36:18 +08:00
										 |  |  |             <td>State</td>'; | 
					
						
							|  |  |  |         foreach($bands as $band) { | 
					
						
							|  |  |  |             echo '<td>' . $band . '</td>'; | 
					
						
							| 
									
										
										
										
											2020-02-09 20:20:59 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-03-29 07:36:18 +08:00
										 |  |  |             echo '</tr> | 
					
						
							| 
									
										
										
										
											2020-02-09 20:20:59 +08:00
										 |  |  |         </thead> | 
					
						
							| 
									
										
										
										
											2020-03-29 07:36:18 +08:00
										 |  |  |         <tbody>'; | 
					
						
							|  |  |  |         foreach ($was_array as $was => $value) {      // Fills the table with the data
 | 
					
						
							|  |  |  |         echo '<tr> | 
					
						
							|  |  |  |             <td>'. $was .'</td>'; | 
					
						
							|  |  |  |             foreach ($value  as $key) { | 
					
						
							|  |  |  |             echo '<td style="text-align: center">' . $key . '</td>'; | 
					
						
							| 
									
										
										
										
											2020-02-09 20:20:59 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2020-03-29 07:36:18 +08:00
										 |  |  |             echo '</tr>'; | 
					
						
							| 
									
										
										
										
											2020-02-09 20:20:59 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-03-29 07:36:18 +08:00
										 |  |  |         echo '</tfoot></table></div>'; | 
					
						
							| 
									
										
										
										
											2020-02-09 20:20:59 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-29 07:36:18 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         echo '<div class="alert alert-danger" role="alert"><a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>Nothing found!</div>'; | 
					
						
							|  |  |  |     } |