Files
EasySoft-ZenTaoPMS/module/my/view/blockbugs.html.php
2011-06-29 15:44:18 +00:00

15 lines
470 B
PHP

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