| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- /**
- * The browse mobile view file of testcase module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(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 Yidong Wang <yidong@cnezsoft.com>
- * @package testcase
- * @version $Id$
- * @link http://www.zentao.net
- */
- ?>
- <?php include './m.caseheader.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>
- </div>
- <section id='page' class='section list-with-pager'>
- <?php $refreshUrl = $this->createLink('testcase', 'browse', http_build_query($this->app->getParams()));?>
- <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->testcase->title;?></th>
- <th class='w-80px text-center'><?php echo $lang->testcase->status;?></th>
- <th class='w-80px text-center'><?php echo $lang->testcase->result;?></th>
- </tr>
- </thead>
- <?php foreach($cases as $case):?>
- <tr class='text-center' data-url='<?php echo $this->createLink('testcase', 'view', "caseID={$case->id}")?>' data-id='<?php echo$case->id;?>'>
- <td class='text-left'>
- <?php if($case->branch) echo "<span title='{$lang->product->branchName[$product->type]}' class='label label-branch label-badge'>{$branches[$case->branch]}</span> "?>
- <?php if($modulePairs and $case->module) echo "<span title='{$lang->testcase->module}' class='label label-info label-badge'>{$modulePairs[$case->module]}</span> "?>
- <?php echo "<span style='color:$case->color'>" . $case->title . '</span>';?>
- </td>
- <?php $caseStatus = $case->needconfirm ? 'changed' : $case->status?>
- <td class='testcase-<?php echo $caseStatus;?>'><?php echo $case->needconfirm ? $lang->story->changed : zget($lang->testcase->statusList, $case->status);?></td>
- <td class='<?php echo $case->lastRunResult;?>'><?php echo zget($lang->testcase->resultList, $case->lastRunResult);?></td>
- </tr>
- <?php endforeach;?>
- </table>
- </div>
- <nav class='nav justified pager'>
- <?php $pager->show($align = 'justify');?>
- </nav>
- </section>
- <div class='list sort-panel hidden affix enter-from-bottom layer' id='sortPanel'>
- <?php
- $vars = "productID=$productID&branch=$branch&browseType=$browseType¶m=$param&orderBy=%s&recTotal={$pager->recTotal}&recPerPage={$pager->recPerPage}";
- $sortOrders = array('id', 'pri', 'title', 'status', 'openedBy', 'openedDate', 'type', 'lastRunner', 'lastRunDate', 'lastRunResult');
- foreach ($sortOrders as $order)
- {
- commonModel::printOrderLink($order, $orderBy, $vars, '<i class="icon icon-sort-indicator"></i>' . ($lang->testcase->{$order}));
- }
- ?>
- </div>
- <script>
- $(function()
- {
- $('#<?php echo $browseType;?>Tab').addClass('active');
- <?php if($config->global->flow != 'full'):?>
- $('#appnav a').removeClass('active');
- $("#appnav a[href*='<?php echo $browseType?>']").addClass('active');
- <?php endif;?>
- })
- </script>
- <?php include '../../common/view/m.footer.html.php';?>
|