Files
wavelog/application/views/calltester/index.php
2025-12-20 15:01:53 +01:00

24 lines
1.0 KiB
PHP

<div class="container">
<br />
<h5><?= __("Callsign DXCC identification"); ?></h5>
<div class="d-flex align-items-center mb-3">
<label class="me-2" for="de"><?= __("Station Location"); ?></label>
<select class="form-select form-select-sm w-auto me-2" id="de" name="de">
<option value="all">All</option>
<?php foreach ($station_profile->result() as $station) { ?>
<option value="<?php echo $station->station_id; ?>">
<?= __("Callsign: ") . " " ?>
<?php echo str_replace("0", "&Oslash;", strtoupper($station->station_callsign)); ?> (<?php echo $station->station_profile_name; ?>)
</option>
<?php } ?>
</select>
<button id="startDxccCheck" class="btn btn-primary btn-sm"><?= __("Start DXCC Check"); ?></button>
<div class="form-check me-2 mx-2">
<input type="checkbox" class="form-check-input" id="compareDxccClass" name="compareDxccClass">
<label class="form-check-label" for="compareDxccClass"><?= __("Compare DXCC class and logbook model"); ?></label>
</div>
</div>
<div class='result'>
</div>
</div>