Files
EasySoft-ZenTaoPMS/module/story/view/tasks.html.php
T
wangchunsheng e8b1377c1e * rewrite the story module's ui.
* splite the css and js of story module.
2011-03-02 09:53:03 +00:00

12 lines
298 B
PHP

<?php include '../../common/view/header.lite.html.php';?>
<table class='table-1 mt-10px'>
<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';?>