| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- * The ajax select story view file of charter 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 charter
- * @version $Id$
- * @link http://www.zentao.net
- */
- ?>
- <?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
- <?php js::set('productID', $productID)?>
- <?php js::set('roadmapIDList', $roadmapIDList)?>
- <style>
- .c-id,
- </style>
- <div id="mainContent" class="main-content">
- <div class='main-header'>
- <h2><?php echo $lang->charter->roadmapStory;?></h2>
- <div class="btn-toolbar pull-left">
- <div class="input-control space w-150px">
- <?php echo html::select('roadmap', $roadmaps, $roadmapID, "onchange='changeRoadmap(this.value)' class='form-control chosen' data-placeholder='{$lang->charter->roadmap}'");?>
- </div>
- </div>
- </div>
- <?php if(empty($stories)):?>
- <div class="table-empty-tip">
- <p>
- <span class="text-muted"><?php echo $lang->charter->noData;?></span>
- </p>
- </div>
- <?php else:?>
- <table class='table table-fixed table-bordered' id='storyList'>
- <thead>
- <tr>
- <th class='w-60px text-center'><?php echo $lang->idAB;?></th>
- <th class='w-60px text-center'><?php echo $lang->priAB;?></th>
- <th><?php echo $lang->charter->storyAB;?></th>
- <th class='w-100px text-center'><?php echo $lang->story->module;?></th>
- <th class='w-100px text-center'><?php echo $lang->story->status;?></th>
- </tr>
- </thead>
- <tbody>
- <?php foreach($stories as $story):?>
- <?php $storyLink = $this->createLink($story->type, 'view', "storyID=$story->id"); //页面重构后才可以支持弹窗里打开重构后的页面,目前用target=_blank临时处理。?>
- <tr>
- <td class='c-id text-center'><?php echo $story->id;?></td>
- <?php $priClass = $story->pri ? "label-pri label-pri-{$story->pri}" : '';?>
- <td class='text-center'><span class='<?php echo $priClass;?>'><?php echo zget($lang->story->priList, $story->pri);?></span></td>
- <td class='text-left nobr c-name' title="<?php echo $story->title?>">
- <span class='label gray-pale'><?php echo $storyGrades["$story->type-$story->grade"]; ?></span>
- <?php echo common::hasPriv('story', 'storyView') ? html::a($storyLink, $story->title, '_blank') : $story->title;?>
- </td>
- <td class='text-center'><?php echo zget($modules, $story->module);?></td>
- <td class='text-center'><?php echo zget($lang->story->statusList, $story->status);?></td>
- </tr>
- <?php endforeach;?>
- </tbody>
- </table>
- <?php endif;?>
- </div>
- <?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>
|