[OQRS] Added location name to OQRS dropdown

这个提交包含在:
Andreas 2022-12-22 19:59:42 +01:00
父节点 1c92c5f345
当前提交 0bdebe187f

查看文件

@ -19,7 +19,7 @@
<label class="my-1 mr-2" for="station">Select station: </label> <label class="my-1 mr-2" for="station">Select station: </label>
<select id="station" class="custom-select my-1 mr-sm-2" name="station"> <select id="station" class="custom-select my-1 mr-sm-2" name="station">
<?php foreach($stations->result() as $station) { <?php foreach($stations->result() as $station) {
echo '<option value="' . $station->station_id . '">' . $station->station_callsign . '</option>'."\n"; echo '<option value="' . $station->station_id . '">' . $station->station_profile_name . ' - ' . $station->station_callsign . '</option>'."\n";
} ?> } ?>
</select> </select>
<button id="button1id" type="button" onclick="loadStationInfo();" name="button1id" class="btn btn-sm btn-primary"> Proceed</button> <button id="button1id" type="button" onclick="loadStationInfo();" name="button1id" class="btn btn-sm btn-primary"> Proceed</button>