53 lines
2.4 KiB
PHP
53 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* The project view file of dashboard module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package dashboard
|
|
* @version $Id: project.html.php 5095 2013-07-11 06:03:40Z chencongzhi520@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<?php include '../../common/view/tablesorter.html.php';?>
|
|
<div id='titlebar' class='hide'>
|
|
<div class='heading'><i class='icon-folder-open-alt'></i> <?php echo $lang->my->myProject;?></div>
|
|
<div class='actions'>
|
|
<?php echo html::a(helper::createLink('project', 'create'), "<i class='icon-plus'></i> " . $lang->my->home->createProject, '', "class='btn'") ?>
|
|
</div>
|
|
</div>
|
|
<table class='table table-condensed table-hover table-striped tablesorter table-fixed'>
|
|
<thead>
|
|
<tr class='text-center'>
|
|
<th class='w-id'><?php echo $lang->idAB;?></th>
|
|
<th class='w-160px'><?php echo $lang->project->code;?></th>
|
|
<th><?php echo $lang->project->name;?></th>
|
|
<th class='w-date'><?php echo $lang->project->begin;?></th>
|
|
<th class='w-date'><?php echo $lang->project->end;?></th>
|
|
<th class='w-status'><?php echo $lang->statusAB;?></th>
|
|
<th class='w-user'><?php echo $lang->team->role;?></th>
|
|
<th class='w-date'><?php echo $lang->team->join;?></th>
|
|
<th class='w-110px'><?php echo $lang->team->hours;?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach($projects as $project):?>
|
|
<?php $projectLink = $this->createLink('project', 'browse', "projectID=$project->id");?>
|
|
<tr class='text-center'>
|
|
<td><?php echo html::a($projectLink, $project->id);?></td>
|
|
<td class='text-left'><?php echo $project->code;?></td>
|
|
<td class='text-left'><?php echo html::a($projectLink, $project->name);?></td>
|
|
<td><?php echo $project->begin;?></td>
|
|
<td><?php echo $project->end;?></td>
|
|
<td class='project-<?php echo $project->status?>'><?php echo $lang->project->statusList[$project->status];?></td>
|
|
<td><?php echo $project->role;?></td>
|
|
<td><?php echo $project->join;?></td>
|
|
<td><?php echo $project->hours;?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
<?php include '../../common/view/footer.html.php';?>
|