small html change adding id tag

这个提交包含在:
Peter Goodhall 2019-10-05 23:21:52 +01:00
父节点 71c3556a8b
当前提交 8a601e3c5e

查看文件

@ -161,7 +161,7 @@
<div class="tab-pane fade" id="station" role="tabpanel" aria-labelledby="station-tab">
<div class="form-group">
<label for="inputStationProfile">Station Profile</label>
<select class="custom-select" name="station_profile">
<select id="stationProfile" class="custom-select" name="station_profile">
<option value="0" selected="selected">None</option>
<?php foreach ($stations->result() as $stationrow) { ?>
<option value="<?php echo $stationrow->station_id; ?>" <?php if($this->session->userdata('station_profile_id') == $stationrow->station_id) { echo "selected=\"selected\""; } ?>><?php echo $stationrow->station_profile_name; ?></option>