mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Merge pull request #905 from HB9HIL/contesting
[CONTESTING] Fix some issues in contesting
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
<script>
|
||||
var lang_contestname_warning = "<?= __("You need to start a new session before you can change the contest name!"); ?>";
|
||||
</script>
|
||||
|
||||
<div class="container qso_panel contesting">
|
||||
<button type="button" class="btn btn-sm btn-warning float-end" onclick="reset_contest_session()"><i class="fas fa-sync-alt"></i> <?= __("Start new Contest Session"); ?></button>
|
||||
<h2 style="display:inline"><?= __("Contest Logging"); ?> </h2> <?php echo ($manual_mode == 0 ? " <span style='display:inline' class='align-text-top badge text-bg-success'>LIVE</span>" : " <span style='display:inline' class='align-text-top badge text-bg-danger'>POST</span>"); ?>
|
||||
@@ -22,14 +26,15 @@
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<label class="col-auto control-label" for="contestname"><?= __("Contest Name"); ?></label>
|
||||
<label class="col-auto control-label" for="contestname_select"><?= __("Contest Name"); ?></label>
|
||||
|
||||
<div class="col-auto">
|
||||
<select class="form-select form-select-sm" id="contestname" name="contestname">
|
||||
<select class="form-select form-select-sm" id="contestname_select" name="contestname_select">
|
||||
<?php foreach($contestnames as $contest) {
|
||||
echo "<option value='" . $contest['adifname'] . "'>" . $contest['name'] . "</option>";
|
||||
} ?>
|
||||
</select>
|
||||
<input type="hidden" id="contestname" name="contestname" />
|
||||
</div>
|
||||
|
||||
<label class="col-auto control-label" for="operatorcall"><?= __("Operator Callsign"); ?></label>
|
||||
|
||||
@@ -2472,7 +2472,6 @@ function viewEqsl(picture, callsign) {
|
||||
<script>
|
||||
var manual = <?php echo $manual_mode; ?>;
|
||||
</script>
|
||||
<script src="<?php echo base_url() ;?>assets/js/sections/contesting.js?v2"></script>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($this->uri->segment(2) == "counties" || $this->uri->segment(2) == "counties_details") { ?>
|
||||
|
||||
Reference in New Issue
Block a user