Make table a little more readable

这个提交包含在:
phl0 2023-09-20 14:00:07 +02:00
父节点 ace99baecc
当前提交 b3b8d1f613
找不到此签名对应的密钥
GPG 密钥 ID: 48EA1E640798CA9A

查看文件

@ -5,7 +5,8 @@
<table class="table table-striped table-hover">
<thead>
<tr>
<th>Date / Time</th>
<th>Date</th>
<th>Time</th>
<th>Callsign</th>
<th>Satellite</th>
<th>Gridsquare(s)</th>
@ -30,11 +31,12 @@
?>
<?php $timestamp = strtotime($rove['date']);
echo date($custom_date_format, $timestamp); ?>
- <?php echo $rove['start_time']; ?> - <?php echo $rove['end_time']; ?>
echo date($custom_date_format, $timestamp); ?>
</td>
<td>
<?php echo $rove['start_time']." - ".$rove['end_time']; ?>
</td>
<td>
<?php
$CI = &get_instance();