* Use the function processStatus to get status of a record.

This commit is contained in:
liugang
2019-07-30 15:17:27 +08:00
parent 9174165657
commit 0ec5dadb1c
25 changed files with 44 additions and 44 deletions
+1 -1
View File
@@ -66,7 +66,7 @@
<td><?php echo $task->consumed;?></td>
<td><?php echo $task->left;?></td>
<td class=<?php if(isset($task->delay)) echo 'delayed';?>><?php if(substr($task->deadline, 0, 4) > 0) echo $task->deadline;?></td>
<td class='<?php echo $task->status;?>'><?php echo $lang->task->statusList[$task->status];?></td>
<td class='<?php echo $task->status;?>'><?php echo $this->processStatus('task', $task);?></td>
</tr>
<?php endforeach;?>
</tbody>