Files
EasySoft-ZenTaoPMS/module/story/view/tasks.html.php
2014-04-21 13:54:34 +08:00

12 lines
288 B
PHP

<?php include '../../common/view/header.lite.html.php';?>
<table class='table'>
<caption><?php echo $lang->story->tasks;?></caption>
<?php
foreach($tasks as $task)
{
echo "<tr><td>$task</td></tr>";
}
?>
</table>
<?php include '../../common/view/footer.lite.html.php';?>