90 lines
4.0 KiB
PHP
90 lines
4.0 KiB
PHP
<?php
|
|
/**
|
|
* The html template file of index method of index module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
|
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
|
* @author Yangyang Shi <shiyangyang@cnezsoft.com>
|
|
* @package ZenTaoPMS
|
|
* @version $Id$
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<?php include '../../common/view/sparkline.html.php';?>
|
|
<div id='featurebar'>
|
|
<div class='heading'><?php echo html::icon($lang->icons['product']) . ' ' . $lang->product->index;?> </div>
|
|
<div class='actions'>
|
|
<?php echo html::a($this->createLink('product', 'create'), "<i class='icon-plus'></i> " . $lang->product->create,'', "class='btn'") ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class='block' id='productbox'>
|
|
<?php if(empty($productStats)):?>
|
|
<div class='container mw-500px'>
|
|
<div class='alert'>
|
|
<i class='icon icon-info-sign'></i>
|
|
<div class='content'>
|
|
<h5><?php echo $lang->my->home->noProductsTip ?></h5>
|
|
<?php echo html::a($this->createLink('product', 'create'), "<i class='icon-plus'></i> " . $lang->my->home->createProduct,'', "class='btn btn-success'") ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php else:?>
|
|
<form method='post' action='<?php echo inLink('batchEdit', "productID=$productID");?>'>
|
|
<table class='table table-condensed table-hover table-striped tablesorter'>
|
|
<?php $vars = "locate=no&productID=$productID&orderBy=%s&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}";?>
|
|
<thead>
|
|
<tr>
|
|
<th class='w-id'><?php common::printOrderLink('id', $orderBy, $vars, $lang->idAB);?></th>
|
|
<th class='w-200px'><?php common::printOrderLink('name', $orderBy, $vars, $lang->product->name);?></th>
|
|
<th><?php echo $lang->story->statusList['active'] . $lang->story->common;?></th>
|
|
<th><?php echo $lang->story->statusList['changed'] . $lang->story->common;?></th>
|
|
<th><?php echo $lang->story->statusList['draft'] . $lang->story->common;?></th>
|
|
<th><?php echo $lang->story->statusList['closed'] . $lang->story->common;?></th>
|
|
<th><?php echo $lang->product->plans;?></th>
|
|
<th><?php echo $lang->product->releases;?></th>
|
|
<th><?php echo $lang->product->bugs;?></th>
|
|
<th><?php echo $lang->bug->unResolved;?></th>
|
|
<th><?php echo $lang->bug->assignToNull;?></th>
|
|
</tr>
|
|
</thead>
|
|
<?php $canBatchEdit = common::hasPriv('product', 'batchEdit'); ?>
|
|
<?php foreach($productStats as $product):?>
|
|
<tr class='text-center'>
|
|
<td>
|
|
<?php if($canBatchEdit):?>
|
|
<input type='checkbox' name='productIDList[<?php echo $product->id;?>]' value='<?php echo $product->id;?>' />
|
|
<?php endif;?>
|
|
<?php echo html::a($this->createLink('product', 'view', 'product=' . $product->id), sprintf('%03d', $product->id));?>
|
|
</td>
|
|
<td class='text-left'><?php echo html::a($this->createLink('product', 'view', 'product=' . $product->id), $product->name);?></td>
|
|
<td><?php echo $product->stories['active']?></td>
|
|
<td><?php echo $product->stories['changed']?></td>
|
|
<td><?php echo $product->stories['draft']?></td>
|
|
<td><?php echo $product->stories['closed']?></td>
|
|
<td><?php echo $product->plans?></td>
|
|
<td><?php echo $product->releases?></td>
|
|
<td><?php echo $product->bugs?></td>
|
|
<td><?php echo $product->unResolved;?></td>
|
|
<td><?php echo $product->assignToNull;?></td>
|
|
</tr>
|
|
<?php endforeach;?>
|
|
<?php if($canBatchEdit):?>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan='11'>
|
|
<div class='table-actions clearfix'>
|
|
<?php echo "<div class='btn-group'>" . html::selectButton() . '</div>';?>
|
|
<?php echo html::submitButton($lang->product->batchEdit, '', '');?>
|
|
</div>
|
|
<div class='text-right'><?php $pager->show();?></div>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
<?php endif;?>
|
|
</table>
|
|
</form>
|
|
<?php endif;?>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|