fixed form-selects in search

这个提交包含在:
HB9HIL 2023-11-19 11:10:49 +01:00
父节点 c0395fd415
当前提交 a59ca62f45
共有 3 个文件被更改,包括 3 次插入3 次删除

查看文件

@ -29,7 +29,7 @@
<form method="post" action="" id="search_box" name="test">
<div class="mb-3 row">
<label for="callsign" class="col-sm-2 col-form-label">Station location:</label>
<select id="station_id" name="station_profile" class="form-select col-sm-3 mb-3 me-sm-3">
<select id="station_id" name="station_profile" class="form-select col-sm-3 mb-3 me-sm-3 w-auto">
<option value="All">All</option>
<?php foreach ($station_profile->result() as $station) { ?>
<option value="<?php echo $station->station_id; ?>">Callsign: <?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)</option>

查看文件

@ -29,7 +29,7 @@
<form method="post" action="" id="search_box" name="test">
<div class="mb-3 row">
<label for="callsign" class="col-sm-2 col-form-label">Station location:</label>
<select id="station_id" name="station_profile" class="form-select col-sm-3 mb-3 me-sm-3">
<select id="station_id" name="station_profile" class="form-select col-sm-3 mb-3 me-sm-3 w-auto">
<option value="All">All</option>
<?php foreach ($station_profile->result() as $station) { ?>
<option value="<?php echo $station->station_id; ?>">Callsign: <?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)</option>

查看文件

@ -30,7 +30,7 @@
<form method="post" action="" id="search_box" name="test">
<div class="mb-3 row">
<label for="callsign" class="col-sm-2 col-form-label">Station location:</label>
<select id="station_id" name="station_profile" class="form-select col-sm-3 mb-3 me-sm-3">
<select id="station_id" name="station_profile" class="form-select col-sm-3 mb-3 me-sm-3 w-auto">
<option value="All">All</option>
<?php foreach ($station_profile->result() as $station) { ?>
<option value="<?php echo $station->station_id; ?>">Callsign: <?php echo $station->station_callsign; ?> (<?php echo $station->station_profile_name; ?>)</option>