Put "OR" in brackets add css for "only worked"

这个提交包含在:
int2001 2023-09-12 05:38:07 +00:00
父节点 744ca514bc
当前提交 67731e4c61
找不到此签名对应的密钥
GPG 密钥 ID: DFB1C13CD2DB037B
共有 3 个文件被更改,包括 10 次插入4 次删除

查看文件

@ -283,7 +283,7 @@ class Logbook extends CI_Controller {
$this->db->where('COL_BAND', $band);
$this->db->where('COL_PROP_MODE !=','SAT');
if ($extrawhere != '') {
$this->db->where($extrawhere);
$this->db->where('('.$extrawhere.')');
} else {
$this->db->where("1=0");
}
@ -367,7 +367,7 @@ class Logbook extends CI_Controller {
$this->db->where('COL_BAND', $band);
$this->db->where('COL_PROP_MODE !=','SAT');
if ($extrawhere != '') {
$this->db->where($extrawhere);
$this->db->where('('.$extrawhere.')');
} else {
$this->db->where("1=0");
}
@ -463,7 +463,7 @@ class Logbook extends CI_Controller {
$this->db->where('COL_BAND', $band);
$this->db->where('COL_PROP_MODE !=','SAT');
if ($extrawhere != '') {
$this->db->where($extrawhere);
$this->db->where('('.$extrawhere.')');
} else {
$this->db->where("1=0");
}

查看文件

@ -144,10 +144,14 @@ thead > tr > td {
text-transform: uppercase;
}
.workedGrid {
.confirmedGrid {
border-color: green;
}
.workedGrid {
border-color: yellow;
}
.newGrid {
border-color: red;
border-width: 2px;

查看文件

@ -445,8 +445,10 @@ function reset_fields() {
$('#locator').val("");
$('#iota_ref').val("");
$('#sota_ref').val("");
$("#locator").removeClass("confirmedGrid");
$("#locator").removeClass("workedGrid");
$("#locator").removeClass("newGrid");
$("#callsign").removeClass("confirmedGrid");
$("#callsign").removeClass("workedGrid");
$("#callsign").removeClass("newGrid");
$('#callsign_info').removeClass("badge-secondary");