only locations with a eQSL nickname should be displayed in the dropdown under eQSL Import
这个提交包含在:
父节点
2fdc86fe51
当前提交
cb9defbe91
共有 1 个文件被更改,包括 3 次插入 和 2 次删除
|
|
@ -37,9 +37,10 @@
|
|||
<p>Choose Station(location) eQSL File belongs to:</p>
|
||||
<select name="station_profile" class="form-select mb-2 me-sm-2" style="width: 20%;">
|
||||
<option value="0">Select Station Location</option>
|
||||
<?php foreach ($station_profile->result() as $station) { ?>
|
||||
<?php foreach ($station_profile->result() as $station) {
|
||||
if($station->eqslqthnickname) { ?>
|
||||
<option value="<?php echo $station->station_id; ?>" <?php if ($station->station_id == $this->stations->find_active()) { echo " selected =\"selected\""; } ?>>Callsign: <?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name.") eQSL: ".$station->eqslqthnickname; ?></option>
|
||||
<?php } ?>
|
||||
<?php } } ?>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
正在加载…
在新工单中引用