mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Align SIG abbreviations
This commit is contained in:
@@ -389,11 +389,11 @@
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="mb-3 col-sm-6">
|
||||
<label for="sig"><?= __("Sig"); ?></label>
|
||||
<label for="sig"><?= __("SIG"); ?></label>
|
||||
<input type="text" class="form-control text-uppercase" id="sig" name="sig" value="<?php echo $qso->COL_SIG; ?>">
|
||||
</div>
|
||||
<div class="mb-3 col-sm-6">
|
||||
<label for="sig_info"><?= __("Sig Info"); ?></label>
|
||||
<label for="sig_info"><?= __("SIG Info"); ?></label>
|
||||
<input type="text" class="form-control text-uppercase" id="sig_info" name="sig_info" value="<?php echo $qso->COL_SIG_INFO; ?>">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -256,14 +256,14 @@
|
||||
|
||||
<?php if ($user_sig_to_qso_tab ?? false) { ?>
|
||||
<div class="mb-3 row">
|
||||
<label class="col-sm-3 col-form-label" for="sig"><?= __("Sig"); ?></label>
|
||||
<label class="col-sm-3 col-form-label" for="sig"><?= __("SIG"); ?></label>
|
||||
<div class="col-sm-9">
|
||||
<input class="form-control text-uppercase" id="sig" tabindex="15" type="text" name="sig" value="" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3 row">
|
||||
<label class="col-sm-3 col-form-label" for="sig_info"><?= __("Sig Info"); ?></label>
|
||||
<label class="col-sm-3 col-form-label" for="sig_info"><?= __("SIG Info"); ?></label>
|
||||
<div class="col-sm-9">
|
||||
<input class="form-control text-uppercase" id="sig_info" tabindex="16" type="text" name="sig_info" value="" />
|
||||
</div>
|
||||
@@ -549,13 +549,13 @@
|
||||
|
||||
<?php if (!$user_sig_to_qso_tab ?? false) { ?>
|
||||
<div class="mb-3">
|
||||
<label for="sig"><?= __("Sig"); ?></label>
|
||||
<label for="sig"><?= __("SIG"); ?></label>
|
||||
<input class="form-control text-uppercase" id="sig" type="text" name="sig" value="" />
|
||||
<small id="sigHelp" class="form-text text-muted"><?= __("For example: GMA"); ?></small>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="sig_info"><?= __("Sig Info"); ?></label>
|
||||
<label for="sig_info"><?= __("SIG Info"); ?></label>
|
||||
<input class="form-control text-uppercase" id="sig_info" type="text" name="sig_info" value="" />
|
||||
<small id="sigInfoHelp" class="form-text text-muted"><?= __("For example: DA/NW-357"); ?></small>
|
||||
</div>
|
||||
|
||||
@@ -663,7 +663,7 @@
|
||||
</div>
|
||||
<div class="form-check form-switch">
|
||||
<input name="user_sig_to_qso_tab" class="form-check-input" type="checkbox" role="switch" id="sigToQsoTab" <?php if ($user_sig_to_qso_tab ?? false) { echo 'checked'; } ?>>
|
||||
<label class="form-check-label" for="sigToQsoTab" ><?= __("Sig"); ?> / <?= __("Sig Info"); ?></label>
|
||||
<label class="form-check-label" for="sigToQsoTab" ><?= __("SIG"); ?> / <?= __("SIG Info"); ?></label>
|
||||
</div>
|
||||
<div class="form-check form-switch">
|
||||
<input name="user_dok_to_qso_tab" class="form-check-input" type="checkbox" role="switch" id="dokToQsoTab" <?php if ($user_dok_to_qso_tab ?? false) { echo 'checked'; } ?>>
|
||||
|
||||
@@ -422,7 +422,7 @@
|
||||
|
||||
<?php if($row->COL_SIG != null) { ?>
|
||||
<tr>
|
||||
<td><?= __("Sig"); ?></td>
|
||||
<td><?= __("SIG"); ?></td>
|
||||
<?php
|
||||
switch ($row->COL_SIG) {
|
||||
case "GMA":
|
||||
@@ -438,7 +438,7 @@
|
||||
|
||||
<?php if($row->COL_SIG_INFO != null) { ?>
|
||||
<tr>
|
||||
<td><?= __("Sig Info"); ?></td>
|
||||
<td><?= __("SIG Info"); ?></td>
|
||||
<?php
|
||||
switch ($row->COL_SIG) {
|
||||
case "GMA":
|
||||
@@ -723,12 +723,12 @@
|
||||
|
||||
<?php if($row->station_sig) { ?>
|
||||
<tr>
|
||||
<td><?= __("Station") . ' ' . __("Sig"); ?></td>
|
||||
<td><?= __("Station") . ' ' . __("SIG"); ?></td>
|
||||
<td><?php echo $row->station_sig; ?></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><?= __("Station") . ' ' . __("Sig Info"); ?></td>
|
||||
<td><?= __("Station") . ' ' . __("SIG Info"); ?></td>
|
||||
<td><?php echo $row->station_sig_info; ?></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
|
||||
Reference in New Issue
Block a user