Files
2024-12-02 17:12:13 +01:00

55 lines
2.1 KiB
PHP

<div class="container">
<br>
<h2><?php echo $page_title; ?></h2>
<p><?= __("This page lists distance records per satellite based on gridsquares."); ?>
<?php
if ($distances) {
?>
<table style="width: 100%" id="distrectable" class="distrectable table table-sm table-striped table-hover">
<thead>
<tr>
<th style="text-align: center"><?= __("Number") ?></th>
<th style="text-align: center"><?= __("Satellite") ?></th>
<th style="text-align: center" class="distance-column-sort"><?= __("Distance") ?></th>
<th style="text-align: center"><?= __("Date") ?></th>
<th style="text-align: center"><?= __("Time") ?></th>
<th style="text-align: center"><?= __("Callsign") ?></th>
<th style="text-align: center"><?= __("Mode") ?></th>
<th style="text-align: center"><?= __("My Gridsquare") ?></th>
<th style="text-align: center"><?= __("DX Gridsquare") ?></th>
</tr>
</thead>
<tbody>
<?php
if ($distances) {
$i = 1;
foreach ($distances as $row) {
?>
<tr>
<td style="text-align: center"><?php echo $i; ?></td>
<td style="text-align: center"><a href="javascript:displayDistanceQsos('<?php echo $row->sat; ?>')"><?php echo ($row->sat_displayname != null ? $row->sat_displayname." (".$row->sat.")" : $row->sat); ?></a></td>
<td style="text-align: right"><?php printf("%.01f", (floatval($row->distance) * $factor)); echo ' '.$unit; ?></td>
<td style="text-align: center"><?php $timestamp = strtotime($row->time ?? ''); echo date($custom_date_format, $timestamp); ?></td>
<td style="text-align: center"><?php $timestamp = strtotime($row->time ?? ''); echo date('H:i', $timestamp); ?></td>
<td style="text-align: center"><a href="javascript:displayQso(<?php echo $row->primarykey; ?>)"><?php echo $row->callsign; ?></a></td>
<td style="text-align: center"><?php echo $row->mode; ?></td>
<td style="text-align: center"><?php echo $row->mygrid; ?></td>
<td style="text-align: center"><?php echo $row->grid; ?></td>
</tr>
<?php
$i++;
}
}
?>
</tbody>
</table>
<?php } else {
echo '<div class="alert alert-danger" role="alert">' . __("Nothing found!") . '</div>';
}?>
</div>