mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
53 lines
2.3 KiB
PHP
53 lines
2.3 KiB
PHP
<?php
|
|
// 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');
|
|
}
|
|
?>
|
|
|
|
<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">
|
|
<?php echo sprintf(__("Found %s QSO(s) missing state information for DXCC %s."), count($qsos), $country);?>
|
|
</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 $timestamp = strtotime($qso->col_time_on); echo date($custom_date_format . ' H:i', $timestamp); ?></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 htmlspecialchars(ucwords(strtolower($qso->dxcc_name), "- (/"), ENT_QUOTES, 'UTF-8'); ?></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>
|