Cloudlog/application/views/simplefle/index.php

177 wiersze
6.3 KiB
PHP
Czysty Zwykły widok Historia

2023-10-26 18:14:53 +00:00
<script type="text/javascript">
2023-10-27 19:45:15 +00:00
var Bands = <?php echo json_encode($bands);?>;
var user_id = <?php echo $this->session->userdata('user_id'); ?>;
2023-10-26 18:14:53 +00:00
</script>
2023-10-24 20:54:35 +00:00
<div class="container">
2023-10-26 18:14:53 +00:00
2023-10-25 07:29:16 +00:00
<br>
<div id="simpleFleInfo">
<script>
var lang_simplefle_info_button = "<?php echo lang('simplefle_info_button'); ?>";
var lang_simplefle_info_ln1 = "<?php echo lang('simplefle_info_ln1'); ?>";
var lang_simplefle_info_ln2 = "<?php echo lang('simplefle_info_ln2'); ?>";
var lang_simplefle_info_ln3 = "<?php echo lang('simplefle_info_ln3'); ?>";
var lang_simplefle_info_ln4 = "<?php echo lang('simplefle_info_ln4'); ?>";
2023-10-25 08:58:34 +00:00
var lang_simplefle_syntax_help = "<?php echo lang('simplefle_syntax_help_button'); ?>";
2023-10-26 14:10:05 +00:00
var lang_simplefle_syntax_help_title = "<?php echo lang('simplefle_syntax_help_title'); ?>";
2023-10-25 07:29:16 +00:00
</script>
<h2><?php echo $page_title; ?></h2>
2023-10-25 08:58:34 +00:00
<button type="button" class="btn btn-sm btn-primary mr-1" id="simpleFleInfoButton"><?php echo lang('simplefle_info'); ?></button>
2023-10-26 18:14:53 +00:00
</div>
2023-10-25 07:29:16 +00:00
<?php if($this->session->flashdata('message')) { ?>
<!-- Display Message -->
<div class="alert-message error">
<p><?php echo $this->session->flashdata('message'); ?></p>
</div>
<?php } ?>
</div>
<div class="container-fluid">
<header
class="d-flex flex-wrap align-items-center justify-content-center justify-content-md-between py-3 mb-4 border-bottom">
<div class="col-md-3 mb-2 mb-md-0">
2023-10-26 18:14:53 +00:00
2023-10-25 07:29:16 +00:00
</div>
<div class="col-md-3 justify-content-end d-flex">
2023-10-26 18:14:53 +00:00
2023-10-25 07:29:16 +00:00
</div>
</header>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="qso" role="tabpanel" aria-labelledby="qso-tab">
<div class="row mt-4">
<div class="col-xs-12 col-md-4">
<div class="row">
<div class="col-xs-12 col-lg-12 col-xl-6">
<div class="form-group">
<label for="qsodate">QSO date</label>
<input type="date" class="form-control" id="qsodate">
</div>
</div>
<div class="col-xs-12 col-lg-12 col-xl-6">
<div class="form-group">
<label for="wwff">WWFF/SOTA <span class="text-muted input-example">e.g.
OKFF-2068</span></label>
<input type="text" class="form-control text-uppercase" id="my-sota-wwff" autofocus>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-lg-6">
<div class="form-group">
2023-10-25 13:14:53 +00:00
<!-- <label for="my-call">My Station Callsign </label>
<input type="text" class="form-control text-uppercase" id="my-call"> -->
2023-10-26 14:10:05 +00:00
<label for="station-call">Station Call</label>
2023-10-25 13:14:53 +00:00
<select name="station_profile" class="station_id custom-select" id="station-call">
<option value="-">-</option>
<?php foreach ($station_profile->result() as $station) { ?>
2023-10-26 14:10:05 +00:00
<option value="<?php echo $station->station_id; ?>" <?php if ($station->station_id == $this->stations->find_active()) { echo 'selected'; } ?>>
<?php echo lang('gen_hamradio_callsign') . ": " . $station->station_callsign . " (" . $station->station_profile_name . ")"; ?>
</option>
2023-10-25 13:14:53 +00:00
<?php } ?>
</select>
2023-10-26 20:50:55 +00:00
<div class="alert alert-danger" role="alert" id="warningStationCall" style="display: none"> </div>
2023-10-25 07:29:16 +00:00
</div>
</div>
<div class="col-xs-12 col-lg-6">
<div class="form-group">
<label for="operator">Operator <span class="text-muted input-example">e.g.
OK2CQR</span></label>
2023-10-25 13:14:53 +00:00
<input type="text" class="form-control text-uppercase" id="operator" value="<?php echo $this->session->userdata('operator_callsign'); ?>">
2023-10-26 20:50:55 +00:00
<div class="alert alert-danger" role="alert" id="warningOperatorField" style="display: none"> </div>
2023-10-25 07:29:16 +00:00
</div>
</div>
</div>
<div class="row">
<div class="col">
<p>Enter the data</p>
2023-10-26 20:50:55 +00:00
<textarea name="qso" class="form-control qso-area" cols="auto" rows="11" id="textarea"></textarea>
2023-10-25 07:29:16 +00:00
</div>
</div>
</div>
<div class="col-xs-12 col-md-8">
QSO list
<div class="qsoList">
<table class="table table-condensed table-striped table-sm" id="qsoTable">
<thead>
<tr>
<th>Date</th>
<th>Time</th>
<th>Callsign</th>
<th>Band</th>
<th>Mode</th>
<th>RS</th>
<th>RR</th>
<th>Op.</th>
<th>SOTA/WFF</th>
</tr>
</thead>
<tbody id="qsoTableBody">
</tbody>
</table>
</div>
<span class="js-qso-count"></span>
<div class="row mt-2">
<div class="col-3 col-sm-3">
<button class="btn btn-primary js-reload-qso">Reload QSO list</button>
</div>
<div class="col-3 col-sm-3">
2023-10-26 18:46:13 +00:00
<button class="btn btn-warning js-save-to-log">Save in Cloudlog</button>
2023-10-25 07:29:16 +00:00
</div>
<div class="col-3 col-sm-3">
<button class="btn btn-danger js-empty-qso">Clear logging session</button>
</div>
<div class="col-3 col-sm-3">
2023-10-26 14:10:05 +00:00
<button class="btn btn-success" id="js-syntax"><?php echo lang('simplefle_syntax_help_button'); ?></button>
2023-10-25 07:29:16 +00:00
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade show" id="settings" role="tabpanel" aria-labelledby="settings-tab">
<div class="row mt-4">
<div class="col">
General
</div>
</div>
<div class="row mt-4">
<div class="col-lg-6">
<div class="row">
<div class="col-3 mt-4">
<strong>QSO</strong>
</div>
<div class="col-sm-3">
<div class="form-group">
<label for="my-power">Power (W)</label>
<input type="text" class="form-control text-uppercase" id="my-power" value="">
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<label for="my-grid">My grid</label>
<input type="text" class="form-control text-uppercase" id="my-grid" value="">
</div>
</div>
</div>
</div>
</div>
<div class="row mt-4">
<div class="col">
Bands
</div>
</div>
<div class="row">
<div class="col col-lg-6">
<div class="js-band-settings mt-4 mb-5">
</div>
</div>
</div>
</div>
</div>
2023-10-26 18:14:53 +00:00
</div>