mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
83 lines
4.7 KiB
PHP
83 lines
4.7 KiB
PHP
<div class="container">
|
|
<h2><?php echo $page_title; ?></h2>
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<ul style="font-size: 15px;" class="nav nav-tabs card-header-tabs pull-right" id="myTab" role="tablist">
|
|
<li class="nav-item">
|
|
<a class="nav-link active" id="dxcc-tab" data-bs-toggle="tab" href="#dxcc" role="tab" aria-controls="update" aria-selected="true"><?= __("DXCC Lookup Data"); ?></a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="tab-content" id="myTabContent">
|
|
<div class="tab-pane fade show active" id="dxcc" role="tabpanel" aria-labelledby="dxcc-tab">
|
|
<p class="card-text"><?= __("Here you can update the DXCC lookup data that is used for displaying callsign information."); ?></p>
|
|
<p class="card-text"><?= __("This data is provided by"); ?> <a href="https://clublog.org/"><?= __("Clublog"); ?></a>.</p>
|
|
|
|
<?php if(!extension_loaded('xml')) { ?>
|
|
<div class="alert alert-danger" role="alert">
|
|
<?= __("You must install php-xml for this to work."); ?>
|
|
</div>
|
|
<?php } else { ?>
|
|
<h5><?= __("Check for DXCC Data Updates"); ?></h5>
|
|
<button type="submit" class="btn btn-primary ld-ext-right" id="btn_update_dxcc"><div class="ld ld-ring ld-spin"></div><?= __("Update DXCC Data"); ?></button>
|
|
|
|
<div id="dxcc_update_status" class="alert alert-secondary mt-3 w-25 w-lg-100" style="display: none;"><?= __("Status:"); ?></br></div>
|
|
|
|
<br/>
|
|
<br/>
|
|
<h5><?= __("Apply DXCC Data to Logbook"); ?></h5>
|
|
<p class="card-text">
|
|
<?= __("After updating, Wavelog can fill in missing callsign information in the logbook using the newly-obtained DXCC data.
|
|
You can choose to check just the QSOs in the logbook that are missing DXCC metadata or to re-check the entire logbook
|
|
and update existing metadata as well, in case it has changed."); ?>
|
|
<br/><br/><b class="badge text-bg-danger"><?= __("WARNING"); ?></b>: <?= __("This affects ALL QSOs of ANY user on this instance. The function is deprectated and will be removed in a future version of Wavelog. As replacement use the Logbook-Advanced!"); ?>
|
|
</p>
|
|
<button class="btn btn-primary mb-3 ld-ext-right"
|
|
hx-get="<?php echo site_url('update/check_missing_dxcc');?>"
|
|
hx-target="#missing_dxcc_results"
|
|
hx-on:htmx:before-request="this.disabled = true; this.classList.add('running');"
|
|
hx-on:htmx:after-request="this.disabled = false; this.classList.remove('running'); document.getElementById('missing_dxcc_results').style.display = 'block';">
|
|
<?= __("Check QSOs missing DXCC data"); ?>
|
|
<div class="ld ld-ring ld-spin"></div>
|
|
</button><br>
|
|
<div id="missing_dxcc_results" class="alert alert-secondary mb-3 w-25 w-lg-100" style="display: none;"></div>
|
|
<button class="btn btn-primary mb-3 ld-ext-right"
|
|
hx-get="<?php echo site_url('update/check_missing_dxcc/all');?>"
|
|
hx-target="#missing_dxcc_results_all"
|
|
hx-on:htmx:before-request="this.disabled = true; this.classList.add('running');"
|
|
hx-on:htmx:after-request="this.disabled = false; this.classList.remove('running'); document.getElementById('missing_dxcc_results_all').style.display = 'block';">
|
|
<?= __("Re-check all QSOs in logbook"); ?>
|
|
<div class="ld ld-ring ld-spin"></div>
|
|
</button>
|
|
<div id="missing_dxcc_results_all" class="alert alert-secondary mb-3 w-25 w-lg-100" style="display: none;"></div>
|
|
|
|
<h5><?= __("Apply Continent Data to Logbook"); ?></h5>
|
|
<p class="card-text">
|
|
<?= __("This function can be used to update QSO continent information for all QSOs in Wavelog missing that information."); ?>
|
|
<br/><br/><b class="badge text-bg-danger"><?= __("WARNING"); ?></b>: <?= __("This affects ALL QSOs of ANY user on this instance. The function is deprectated and will be removed in a future version of Wavelog. As replacement use the Logbook-Advanced!"); ?>
|
|
</p>
|
|
<button class="btn btn-primary mb-3 ld-ext-right"
|
|
hx-get="<?php echo site_url('update/check_missing_continent');?>"
|
|
hx-target="#continent_results"
|
|
hx-on:htmx:before-request="this.disabled = true; this.classList.add('running');"
|
|
hx-on:htmx:after-request="this.disabled = false; this.classList.remove('running'); document.getElementById('continent_results').style.display = 'block';">
|
|
<?= __("Check QSOs missing continent data"); ?>
|
|
<div class="ld ld-ring ld-spin"></div>
|
|
</button>
|
|
<div id="continent_results" class="alert alert-secondary mb-3 w-25 w-lg-100" style="display: none;"></div>
|
|
<style>
|
|
#dxcc_update_status{
|
|
display: None;
|
|
}
|
|
</style>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|