Files
EasySoft-ZenTaoPMS/module/my/view/blocktasks.html.php
chencongzhi520@gmail.com 98748b2ef1 * add title for the task.
2013-05-02 06:27:37 +00:00

15 lines
573 B
PHP

<div class='block linkbox2'>
<table class='table-1 fixed colored'>
<caption>
<div class='f-left'><span class='icon-task'>&nbsp;</span><?php echo $lang->my->task;?></div>
<div class='f-right'><?php echo html::a($this->createLink('my', 'task'), $lang->more . "<span class='icon-more'></span>");?></div>
</caption>
<?php
foreach($tasks as $task)
{
echo "<tr><td class='nobr'>" . "#$task->id " . html::a($this->createLink('task', 'view', "id=$task->id"), $task->name, '', "title=$task->name") . "</td><td width='5'</td></tr>";
}
?>
</table>
</div>