mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Added gridsquare for state qsos not updated
This commit is contained in:
@@ -1613,6 +1613,7 @@ class Logbookadvanced_model extends CI_Model {
|
||||
} else {
|
||||
$result['station_profile_name'] = $qso->station_profile_name;
|
||||
$result['id'] = $qso->COL_PRIMARY_KEY;
|
||||
$result['gridsquare'] = $qso->COL_GRIDSQUARE;
|
||||
$results[] = $result;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -97,8 +97,9 @@ function showStateUpdateResult($result, $country) {
|
||||
echo '<thead class="table-dark">';
|
||||
echo '<tr>';
|
||||
echo '<th>' . __("Callsign") . '</th>';
|
||||
echo '<th>' . __("Reason") . '</th>';
|
||||
echo '<th>' . __("Gridsquare") . '</th>';
|
||||
echo '<th>' . __("Station location") . '</th>';
|
||||
echo '<th>' . __("Reason") . '</th>';
|
||||
echo '</tr>';
|
||||
echo '</thead>';
|
||||
echo '<tbody>';
|
||||
@@ -106,8 +107,9 @@ function showStateUpdateResult($result, $country) {
|
||||
foreach ($details as $r) {
|
||||
echo '<tr>';
|
||||
echo '<td><a id="edit_qso" href="javascript:displayQso(' . $r['id'] . ')">' . htmlspecialchars($r['callsign']) . '</a></td>';
|
||||
echo '<td>' . htmlspecialchars($r['reason']) . '</td>';
|
||||
echo '<td>' . htmlspecialchars($r['gridsquare']) . '</td>';
|
||||
echo '<td>' . htmlspecialchars($r['station_profile_name']) . '</td>';
|
||||
echo '<td>' . htmlspecialchars($r['reason']) . '</td>';
|
||||
echo '</tr>';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user