mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 18:27:16 +00:00
85 lines
2.8 KiB
PHP
85 lines
2.8 KiB
PHP
<?php
|
|
$i = 0;
|
|
|
|
// Determine zone type from data (default to CQ)
|
|
$zone_type = isset($zone_type) ? $zone_type : 'cq';
|
|
$is_itu = ($zone_type === 'itu');
|
|
$zone_label = $is_itu ? 'ITU' : 'CQ';
|
|
|
|
// Calculate color for cache hit rate
|
|
$cache_color = $cache_hit_rate >= 70 ? 'success' : ($cache_hit_rate >= 40 ? 'warning' : 'danger');
|
|
|
|
// Compact statistics row
|
|
echo '<div class="row mb-3 g-2">';
|
|
|
|
$stats = [
|
|
['label' => __("Callsigns Tested"), 'value' => $calls_tested, 'color' => 'primary'],
|
|
['label' => __("Execution Time"), 'value' => round($execution_time, 2) . 's', 'color' => 'info'],
|
|
['label' => __("Potential Wrong Zones"), 'value' => count($result), 'color' => 'warning'],
|
|
['label' => __("Cache Hits"), 'value' => $cache_hits, 'color' => 'success'],
|
|
['label' => __("Cache Misses"), 'value' => $cache_misses, 'color' => 'info'],
|
|
['label' => __("Hit Rate"), 'value' => $cache_hit_rate . '%', 'color' => $cache_color],
|
|
];
|
|
|
|
foreach ($stats as $stat) {
|
|
echo '<div class="col-6 col-md-2">
|
|
<div class="card border-' . $stat['color'] . ' text-center py-2">
|
|
<div class="h5 mb-0 text-' . $stat['color'] . '">' . $stat['value'] . '</div>
|
|
<small class="text-muted">' . $stat['label'] . '</small>
|
|
</div>
|
|
</div>';
|
|
}
|
|
|
|
echo '</div>';
|
|
|
|
// Get Date format
|
|
if($this->session->userdata('user_date_format')) {
|
|
// If Logged in and session exists
|
|
$custom_date_format = $this->session->userdata('user_date_format');
|
|
} else {
|
|
// Get Default date format from /config/wavelog.php
|
|
$custom_date_format = $this->config->item('qso_date_format');
|
|
}
|
|
|
|
if ($result) { ?>
|
|
<div class="table-responsive" style="max-height:70vh; overflow:auto;">
|
|
<table class="table table-sm table-striped table-bordered table-condensed mb-0">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th><?= __("Callsign"); ?></th>
|
|
<th><?= __("QSO Date"); ?></th>
|
|
<th><?= __("Station Profile"); ?></th>
|
|
<th><?= __("Gridsquare"); ?></th>
|
|
<?php if ($is_itu): ?>
|
|
<th><?= __("ITUz"); ?></th>
|
|
<th><?= __("ITUz geojson"); ?></th>
|
|
<?php else: ?>
|
|
<th><?= __("CQz"); ?></th>
|
|
<th><?= __("CQz geojson"); ?></th>
|
|
<?php endif; ?>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($result as $qso): ?>
|
|
<tr>
|
|
<td><?php echo ++$i; ?></td>
|
|
<td><?php echo '<a id="edit_qso" href="javascript:displayQso(' . $qso['id'] . ')">' . htmlspecialchars($qso['callsign']) . '</a>'; ?></td>
|
|
<td><?php echo date($custom_date_format, strtotime($qso['qso_date'])); ?></td>
|
|
<td><?php echo $qso['station_profile']; ?></td>
|
|
<td><?php echo $qso['gridsquare']; ?></td>
|
|
<?php if ($is_itu): ?>
|
|
<td><?php echo $qso['ituzone']; ?></td>
|
|
<td><?php echo $qso['itugeo']; ?></td>
|
|
<?php else: ?>
|
|
<td><?php echo $qso['cqzone']; ?></td>
|
|
<td><?php echo $qso['cqgeo']; ?></td>
|
|
<?php endif; ?>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<?php } ?>
|