mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Added changed files
This commit is contained in:
@@ -30,7 +30,7 @@ function check_missing_distance($result) { ?>
|
||||
<?= __("Update will only set the distance for QSOs where the distance is empty."); ?>
|
||||
<br/>
|
||||
<button type="button" class="mt-2 btn btn-sm btn-primary ld-ext-right" id="updateDistancesBtn" onclick="runUpdateDistancesFix('')">
|
||||
<?= __("Run fix") ?><div class="ld ld-ring ld-spin"></div>
|
||||
<?= __("Update now") ?><div class="ld ld-ring ld-spin"></div>
|
||||
</button>
|
||||
|
||||
<?php }
|
||||
|
||||
41
application/views/logbookadvanced/showMissingDxccQsos.php
Normal file
41
application/views/logbookadvanced/showMissingDxccQsos.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<div class="container-fluid">
|
||||
<?php if (!empty($qsos) && count($qsos) > 0): ?>
|
||||
<div class="table-responsive" style="max-height:50vh; overflow:auto;">
|
||||
<p class="text-muted">
|
||||
Found <?php echo count($qsos); ?> QSO(s) missing DXCC information.
|
||||
</p>
|
||||
<table class="table table-sm table-striped table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Call</th>
|
||||
<th>Date/Time</th>
|
||||
<th>Mode</th>
|
||||
<th>Band</th>
|
||||
<th>State</th>
|
||||
<th>Gridsquare</th>
|
||||
<th>DXCC</th>
|
||||
<th>Station</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach ($qsos as $qso): ?>
|
||||
<tr>
|
||||
<td><?php echo '<a id="edit_qso" href="javascript:displayQso(' . $qso->col_primary_key . ')">' . htmlspecialchars($qso->col_call) . '</a>'; ?></td>
|
||||
<td><?php echo date('Y-m-d H:i', strtotime($qso->col_time_on)); ?></td>
|
||||
<td><?php echo $qso->col_mode; ?></td>
|
||||
<td><?php echo $qso->col_band; ?></td>
|
||||
<td><?php echo $qso->col_state; ?></td>
|
||||
<td><?php echo $qso->col_gridsquare; ?></td>
|
||||
<td><?php echo $qso->dxcc_name; ?></td>
|
||||
<td><?php echo $qso->station_profile_name; ?></td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<?php else: ?>
|
||||
<div class="alert alert-success">
|
||||
<h4>No Issues Found</h4>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
Reference in New Issue
Block a user