[QSLPrint] Added profile name. Fixed table columns when adding QSOs

This commit is contained in:
Andreas Kristiansen
2024-10-20 18:26:15 +02:00
parent df88d55616
commit 973165a046
3 changed files with 32 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
<?php
if ($qsos->result() != NULL) {
echo '<table style="width:100%" class="qsolist table-sm table-bordered table-hover table-striped table-condensed">
echo '<table style="width:100%" class="qsolist table table-sm table-bordered table-hover table-striped table-condensed">
<thead>
<tr>
<th style=\'text-align: center\'>'.__("Callsign").'</th>
@@ -11,6 +11,7 @@ if ($qsos->result() != NULL) {
<th style=\'text-align: center\'>' . __("RST (S)") . '</th>
<th style=\'text-align: center\'>' . __("RST (R)") . '</th>
<th style=\'text-align: center\'>' . __("Station") . '</th>
<th style=\'text-align: center\'>' . __("Profile name") . '</th>
<th style=\'text-align: center\'>' . __("QSL") . ' ' . __("Via") . '</th>
<th style=\'text-align: center\'>' . __("Send Method") . '</th>
<th style=\'text-align: center\'>' . __("QSL") . '</th>';
@@ -43,6 +44,7 @@ if ($qsos->result() != NULL) {
echo '<td style=\'text-align: center\'>' . $qsl->COL_RST_SENT . '</td>';
echo '<td style=\'text-align: center\'>' . $qsl->COL_RST_RCVD . '</td>';
echo '<td style=\'text-align: center\'><span class="badge text-bg-light">' . $qsl->station_callsign . '</span></td>';
echo '<td style=\'text-align: center\'>' . $qsl->station_profile_name . '</span></td>';
echo '<td style=\'text-align: center\'>' . $qsl->COL_QSL_VIA . '</td>';
echo '<td style=\'text-align: center\'>'; echo_qsl_sent_via($qsl->COL_QSL_SENT_VIA); echo '</td>';
echo '<td style=\'text-align: center\' class="qsl">';