mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
49 lines
1.8 KiB
PHP
49 lines
1.8 KiB
PHP
<?php
|
|
$i = 0;
|
|
|
|
echo "<p>" . __("Callsigns tested: ") . $calls_tested . "</p>";
|
|
echo "<p>" . __("Execution time: ") . round($execution_time, 2) . "s</p>";
|
|
echo "<p>" . __("Number of potential QSOs with wrong DXCC: ") . count($result) . "</p>";
|
|
// 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><?= __("Existing DXCC"); ?></th>
|
|
<th><?= __("Existing ADIF"); ?></th>
|
|
<th><?= __("Result DXCC"); ?></th>
|
|
<th><?= __("Result ADIF"); ?></th>
|
|
</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 htmlspecialchars(ucwords(strtolower($qso['existing_dxcc']), "- (/"), ENT_QUOTES, 'UTF-8'); ?></td>
|
|
<td><?php echo $qso['existing_adif']; ?></td>
|
|
<td><?php echo htmlspecialchars(ucwords(strtolower($qso['result_country']), "- (/"), ENT_QUOTES, 'UTF-8'); ?></td>
|
|
<td><?php echo $qso['result_adif']; ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<?php } ?>
|