mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
Introduces the ability to view and change the station location for selected QSOs in Logbook Advanced. Updates backend, frontend, and QSO model to support station location display and modification, including new UI elements and AJAX handlers. Removes SimpleFLE documentation file.
15 lines
722 B
PHP
15 lines
722 B
PHP
<form method="post" class="col-md">
|
|
<div class="mb-3 row">
|
|
<label class="my-1 me-2 col-md-4" for="station_id_select">Station Location:</label>
|
|
<div class="col-md-8">
|
|
<select class="form-select" id="station_id_select" name="station_id_select">
|
|
<option value="">-- Select Station Location --</option>
|
|
<?php foreach($station_profile->result() as $station) { ?>
|
|
<option value="<?php echo $station->station_id; ?>">
|
|
<?php echo $station->station_callsign; ?> - <?php echo $station->station_profile_name; ?>
|
|
</option>
|
|
<?php } ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</form>
|