mark requested paper qsls (send and receive) with yellow maker
这个提交包含在:
父节点
6736777d05
当前提交
14b621c835
共有 2 个文件被更改,包括 29 次插入 和 3 次删除
|
|
@ -42,8 +42,30 @@
|
||||||
<td><?php echo $row->COL_COUNTRY; ?></td>
|
<td><?php echo $row->COL_COUNTRY; ?></td>
|
||||||
<?php if(($this->config->item('use_auth')) && ($this->session->userdata('user_type') >= 2)) { ?>
|
<?php if(($this->config->item('use_auth')) && ($this->session->userdata('user_type') >= 2)) { ?>
|
||||||
<td class="qsl">
|
<td class="qsl">
|
||||||
<span class="qsl-<?php echo ($row->COL_QSL_SENT=='Y')?'green':'red'?>">▲</span>
|
<span class="qsl-<?php
|
||||||
<span class="qsl-<?php echo ($row->COL_QSL_RCVD=='Y')?'green':'red'?>">▼</span>
|
switch ($row->COL_QSL_SENT) {
|
||||||
|
case "Y":
|
||||||
|
echo "green";
|
||||||
|
break;
|
||||||
|
case "R":
|
||||||
|
echo "yellow";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
echo "red";
|
||||||
|
}
|
||||||
|
?>">▲</span>
|
||||||
|
<span class="qsl-<?php
|
||||||
|
switch ($row->COL_QSL_RCVD) {
|
||||||
|
case "Y":
|
||||||
|
echo "green";
|
||||||
|
break;
|
||||||
|
case "R":
|
||||||
|
echo "yellow";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
echo "red";
|
||||||
|
}
|
||||||
|
?>">▼</span>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<?php if ($this->session->userdata('user_eqsl_name') != ""){ ?>
|
<?php if ($this->session->userdata('user_eqsl_name') != ""){ ?>
|
||||||
|
|
|
||||||
|
|
@ -122,6 +122,10 @@ TD.eqsl{
|
||||||
color: #F00;
|
color: #F00;
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
|
.qsl-yellow{
|
||||||
|
color: #d39e00;
|
||||||
|
font-size: 1.1em;
|
||||||
|
}
|
||||||
TD.lotw{
|
TD.lotw{
|
||||||
width: 33px;
|
width: 33px;
|
||||||
}
|
}
|
||||||
|
|
@ -165,4 +169,4 @@ TD.lotw{
|
||||||
|
|
||||||
#nav-bar-search-input:focus {
|
#nav-bar-search-input:focus {
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用