Align ordering of QSL to match with overview view

这个提交包含在:
phl0 2023-05-08 08:49:24 +02:00
父节点 be70b37f1e
当前提交 61b2928105
找不到此签名对应的密钥
GPG 密钥 ID: 48EA1E640798CA9A
共有 2 个文件被更改,包括 9 次插入9 次删除

查看文件

@ -203,12 +203,12 @@
<th>Name</th>
<th>QSL Via</th>
<th>QSL</th>
<?php if ($this->session->userdata('user_lotw_name') != ""){
echo '<th class="lotwconfirmation">LoTW</th>';
} ?>
<?php if ($this->session->userdata('user_eqsl_name') != ""){
echo '<th class="eqslconfirmation">eQSL</th>';
} ?>
<?php if ($this->session->userdata('user_lotw_name') != ""){
echo '<th class="lotwconfirmation">LoTW</th>';
} ?>
<th>QSL Msg</th>
<th>DXCC</th>
<th>State</th>

查看文件

@ -27,12 +27,12 @@ function updateRow(qso) {
cells.eq(c++).text(qso.name);
cells.eq(c++).text(qso.qslVia);
cells.eq(c++).html(qso.qsl);
if ($(".lotwconfirmation")[0]){
cells.eq(c++).html(qso.lotw);
}
if ($(".eqslconfirmation")[0]){
cells.eq(c++).html(qso.eqsl);
}
if ($(".lotwconfirmation")[0]){
cells.eq(c++).html(qso.lotw);
}
cells.eq(c++).text(qso.qslMessage);
cells.eq(c++).text(qso.dxcc);
cells.eq(c++).text(qso.state);
@ -82,12 +82,12 @@ function loadQSOTable(rows) {
data.push(qso.name);
data.push(qso.qslVia);
data.push(qso.qsl);
if ($(".lotwconfirmation")[0]){
data.push(qso.lotw);
}
if ($(".eqslconfirmation")[0]){
data.push(qso.eqsl);
}
if ($(".lotwconfirmation")[0]){
data.push(qso.lotw);
}
data.push(qso.qslMessage);
data.push(qso.dxcc+(qso.end == null ? '' : ' <span class="badge badge-danger">Deleted DXCC</span>'));
data.push(qso.state);