Align ordering of QSL to match with overview view
这个提交包含在:
父节点
be70b37f1e
当前提交
61b2928105
共有 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);
|
||||
|
|
|
|||
正在加载…
在新工单中引用