2020-02-09 12:20:59 +00:00
|
|
|
|
|
|
|
<div class="container">
|
2020-09-22 12:27:52 +00:00
|
|
|
<h2><?php echo $page_title; ?></h2>
|
2020-02-09 12:20:59 +00:00
|
|
|
|
2020-03-28 23:36:18 +00:00
|
|
|
<form class="form" action="<?php echo site_url('awards/was'); ?>" method="post" enctype="multipart/form-data">
|
|
|
|
<fieldset>
|
2020-02-09 12:20:59 +00:00
|
|
|
|
2020-03-28 23:36:18 +00:00
|
|
|
<div class="form-group row">
|
2020-12-22 09:33:08 +00:00
|
|
|
<div class="col-md-2" for="checkboxes">Worked / Confirmed</div>
|
2020-03-28 23:36:18 +00:00
|
|
|
<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">
|
2023-01-18 13:08:56 +00:00
|
|
|
<div class="col-md-2">QSL Type</div>
|
2020-03-28 23:36:18 +00:00
|
|
|
<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>
|
2023-01-18 13:08:56 +00:00
|
|
|
<div class="form-check-inline">
|
|
|
|
<input class="form-check-input" type="checkbox" name="eqsl" value="1" id="eqsl" <?php if ($this->input->post('eqsl')) echo ' checked="checked"'; ?> >
|
|
|
|
<label class="form-check-label" for="eqsl">eQSL</label>
|
|
|
|
</div>
|
2020-03-28 23:36:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group row">
|
|
|
|
<label class="col-md-2 control-label" for="band">Band</label>
|
|
|
|
<div class="col-md-2">
|
2021-07-27 10:11:41 +00:00
|
|
|
<select id="band2" name="band" class="form-control custom-select-sm">
|
2020-03-28 23:36:18 +00:00
|
|
|
<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>
|
|
|
|
|
2021-07-27 10:11:41 +00:00
|
|
|
<div class="form-group row">
|
|
|
|
<label class="col-md-2 control-label" for="mode">Mode</label>
|
|
|
|
<div class="col-md-2">
|
|
|
|
<select id="mode" name="mode" class="form-control custom-select-sm">
|
|
|
|
<option value="All" <?php if ($this->input->post('mode') == "All" || $this->input->method() !== 'mode') echo ' selected'; ?>>All</option>
|
|
|
|
<?php
|
|
|
|
foreach($modes->result() as $mode){
|
|
|
|
if ($mode->submode == null) {
|
|
|
|
echo '<option value="' . $mode->mode . '"';
|
|
|
|
if ($this->input->post('mode') == $mode->mode) echo ' selected';
|
|
|
|
echo '>'. $mode->mode . '</option>'."\n";
|
|
|
|
} else {
|
|
|
|
echo '<option value="' . $mode->submode . '"';
|
|
|
|
if ($this->input->post('mode') == $mode->submode) echo ' selected';
|
|
|
|
echo '>' . $mode->submode . '</option>'."\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-03-28 23:36:18 +00:00
|
|
|
<div class="form-group row">
|
|
|
|
<label class="col-md-2 control-label" for="button1id"></label>
|
|
|
|
<div class="col-md-10">
|
2021-07-27 10:11:41 +00:00
|
|
|
<button id="button2id" type="reset" name="button2id" class="btn btn-sm btn-warning">Reset</button>
|
|
|
|
<button id="button1id" type="submit" name="button1id" class="btn btn-sm btn-primary">Show</button>
|
2021-11-14 16:11:59 +00:00
|
|
|
<?php if ($was_array) {
|
|
|
|
?><button type="button" onclick="load_was_map();" class="btn btn-info btn-sm"><i class="fas fa-globe-americas"></i> Show WAS Map</button>
|
|
|
|
<?php }?>
|
2020-03-28 23:36:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
2021-04-29 22:50:45 +00:00
|
|
|
|
2020-03-28 23:36:18 +00:00
|
|
|
<?php
|
|
|
|
if ($was_array) {
|
2020-08-16 18:31:07 +00:00
|
|
|
$i = 1;
|
2020-03-28 23:36:18 +00:00
|
|
|
echo '
|
2020-10-06 20:01:29 +00:00
|
|
|
<table style="width:100%" class="table table-sm tablewas table-bordered table-hover table-striped table-condensed text-center">
|
2020-02-09 12:20:59 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
2020-08-16 18:31:07 +00:00
|
|
|
<td>#</td>
|
2020-03-28 23:36:18 +00:00
|
|
|
<td>State</td>';
|
|
|
|
foreach($bands as $band) {
|
|
|
|
echo '<td>' . $band . '</td>';
|
2020-02-09 12:20:59 +00:00
|
|
|
}
|
2020-03-28 23:36:18 +00:00
|
|
|
echo '</tr>
|
2020-02-09 12:20:59 +00:00
|
|
|
</thead>
|
2020-03-28 23:36:18 +00:00
|
|
|
<tbody>';
|
2020-08-16 18:31:07 +00:00
|
|
|
|
2020-03-28 23:36:18 +00:00
|
|
|
foreach ($was_array as $was => $value) { // Fills the table with the data
|
|
|
|
echo '<tr>
|
2020-08-16 18:31:07 +00:00
|
|
|
<td>' . $i++ . '</td>
|
2020-03-28 23:36:18 +00:00
|
|
|
<td>'. $was .'</td>';
|
|
|
|
foreach ($value as $key) {
|
|
|
|
echo '<td style="text-align: center">' . $key . '</td>';
|
2020-02-09 12:20:59 +00:00
|
|
|
}
|
2020-03-28 23:36:18 +00:00
|
|
|
echo '</tr>';
|
2020-02-09 12:20:59 +00:00
|
|
|
}
|
2020-08-18 12:41:16 +00:00
|
|
|
echo '</table>
|
2020-02-09 12:20:59 +00:00
|
|
|
|
2020-09-22 12:27:52 +00:00
|
|
|
<h2>Summary</h2>
|
2020-08-18 12:41:16 +00:00
|
|
|
|
2020-10-19 17:16:42 +00:00
|
|
|
<table class="table tablesummary table-sm table-bordered table-hover table-striped table-condensed text-center">
|
2020-08-18 12:41:16 +00:00
|
|
|
<thead>
|
|
|
|
<tr><td></td>';
|
|
|
|
|
2022-01-04 18:13:41 +00:00
|
|
|
foreach($bands as $band) {
|
2020-08-19 15:23:24 +00:00
|
|
|
echo '<td>' . $band . '</td>';
|
2020-08-18 12:41:16 +00:00
|
|
|
}
|
2020-10-15 10:24:20 +00:00
|
|
|
echo '<td>Total</td></tr>
|
2020-08-18 12:41:16 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
<tr><td>Total worked</td>';
|
|
|
|
|
2020-08-19 15:23:24 +00:00
|
|
|
foreach ($was_summary['worked'] as $was) { // Fills the table with the data
|
|
|
|
echo '<td style="text-align: center">' . $was . '</td>';
|
2020-08-18 12:41:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
echo '</tr><tr>
|
|
|
|
<td>Total confirmed</td>';
|
2020-08-19 15:23:24 +00:00
|
|
|
foreach ($was_summary['confirmed'] as $was) { // Fills the table with the data
|
|
|
|
echo '<td style="text-align: center">' . $was . '</td>';
|
2020-08-18 12:41:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
echo '</tr>
|
|
|
|
</table>
|
|
|
|
</div>';
|
2020-03-28 23:36:18 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
echo '<div class="alert alert-danger" role="alert"><a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>Nothing found!</div>';
|
2021-05-01 05:57:08 +00:00
|
|
|
}
|