Files
EasySoft-ZenTaoPMS/module/my/view/blocktodoes.html.php
T

15 lines
466 B
PHP

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