| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * The bug browse mobile view file of execution module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2016 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Fei Chen <chenfei@cnezsoft.com>
- * @package execution
- * @version $Id
- * @link http://www.zentao.net
- */
- include "../../common/view/m.header.html.php";
- ?>
- <div class='heading'>
- <div class='title'>
- <a id='sortTrigger' class='text-right sort-trigger' data-display data-target='#sortPanel' data-backdrop='true'><i class='icon icon-sort'></i> <span class='sort-name'><?php echo $lang->sort ?></span></a>
- </div>
- <nav class='nav'>
- <a data-display='modal' data-placement='bottom' data-remote='<?php echo $this->createLink('bug', 'create', "productID=$productID&branch=$branchID&extra=executionID=$execution->id");?>' class='btn primary'><i class='icon icon-plus'> </i> <?php echo $lang->bug->create;;?></a>
- </nav>
- </div>
- <section id='page' class='section list-with-pager'>
- <?php $refreshUrl = $this->createLink('execution', 'bug', "executionID={$execution->id}&orderBy=%s&build=$buildID&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}");?>
- <div class='box' data-page='<?php echo $pager->pageID;?>' data-refresh-url='<?php echo $refreshUrl;?>'>
- <table class='table bordered no-margin'>
- <thead>
- <tr>
- <th><?php echo $lang->bug->title;?> </th>
- <th class='text-center w-70px'><?php echo $lang->statusAB;?> </th>
- </tr>
- </thead>
- <?php foreach($bugs as $bug):?>
- <tr class='text-center' data-url='<?php echo $this->createLink('bug', 'view', "bugID={$bug->id}")?>' data-id='<?php echo $bug->id;?>'>
- <td class='text-left'><?php echo $bug->title;?></td>
- <td><?php echo zget($lang->bug->statusList, $bug->status);?></td>
- </tr>
- <?php endforeach;?>
- </table>
- </div>
- <nav class='nav justify pager'>
- <?php $pager->show($align = 'justify');?>
- </nav>
- </section>
- <div class='list sort-panel hidden affix enter-from-bottom layer' id='sortPanel'>
- <?php
- $vars = "executionID={$execution->id}&orderBy=%s&build=$buildID&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}&pageID={$pager->pageID}";
- $sortOrders = array('id', 'pri', 'title', 'assignedTo', 'type', 'status', 'openedDate', 'openedBy', 'resolvedBy', 'resolution');
- foreach($sortOrders as $sortOrder)
- {
- commonModel::printOrderLink($sortOrder, $orderBy, $vars, '<i class="icon icon-sort-indicator"></i>' . $lang->bug->{$sortOrder});
- }
- ?>
- </div>
- <?php include "../../common/view/m.footer.html.php"; ?>
|