mirror of
https://github.com/wavelog/wavelog
synced 2026-08-13 18:41:16 -04:00
33 lines
1.4 KiB
PHP
33 lines
1.4 KiB
PHP
<div class="container px-3 px-lg-4 mt-3 mb-3">
|
|
|
|
<h2><?php echo $page_title; ?></h2>
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<?= __("Gridsquare Zone identification"); ?>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="d-flex align-items-center flex-wrap mb-3">
|
|
<label class="me-2" for="de"><?= __("Station Location"); ?></label>
|
|
<select class="form-select form-select-sm w-auto me-2 callsign" id="de" name="de">
|
|
<option value="all">All</option>
|
|
<?php foreach ($station_profile->result() as $station) { ?>
|
|
<option value="<?php echo $station->station_id; ?>"<?php if ($station->station_active) { echo " selected"; } ?>>
|
|
<?= __("Callsign: ") . " " ?>
|
|
<span class="callsign"><?php echo strtoupper($station->station_callsign); ?></span> (<?php echo $station->station_profile_name; ?>)
|
|
</option>
|
|
<?php } ?>
|
|
</select>
|
|
<label class="me-2" for="zoneType"><?= __("Zone Type"); ?></label>
|
|
<select class="form-select form-select-sm w-auto me-2" id="zoneType" name="zoneType">
|
|
<option value="cq"><?= __("CQ Zone"); ?></option>
|
|
<option value="itu"><?= __("ITU Zone"); ?></option>
|
|
</select>
|
|
<button id="startDxccCheck" class="btn btn-primary btn-sm ld-ext-right"><?= __("Start Zone Check"); ?><div class="ld ld-ring ld-spin"></div></button>
|
|
</div>
|
|
<div class='result'>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|