mirror of
https://github.com/wavelog/wavelog
synced 2026-08-13 18:41:16 -04:00
22 lines
1,006 B
PHP
22 lines
1,006 B
PHP
<div class="container px-3 px-lg-4 mt-3 mb-3">
|
|
<h2><?= __("Wavelog Options"); ?></h2>
|
|
<div class="card">
|
|
<?php $this->load->view('options/tabs', ['active_tab' => $active_tab ?? '']); ?>
|
|
<div class="card-body">
|
|
<?php $this->load->view('layout/messages'); ?>
|
|
|
|
<?php echo form_open('options/radio_save'); ?>
|
|
|
|
<div class="mb-3">
|
|
<label for="globalSearch"><?= __("Radio Timeout Warning"); ?></label>
|
|
<p><?= __("The Radio Timeout Warning is used on the QSO entry panel to alert you to radio interface disconnects."); ?></p>
|
|
<input type="text" name="radioTimeout" class="form-control" id="radioTimeout" aria-describedby="radioTimeoutHelp" value="<?php echo $this->optionslib->get_option('cat_timeout_interval'); ?>">
|
|
<small id="radioTimeoutHelp" class="form-text text-muted"><?= __("This number is in seconds."); ?></small>
|
|
</div>
|
|
|
|
<!-- Save the Form -->
|
|
<input class="btn btn-primary" type="submit" value="<?= __("Save"); ?>" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|