| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * The activate mobile view file of testtask 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 testtask
- * @version $Id$
- * @link http://www.zentao.net
- */
- ?>
- <div class='heading divider'>
- <span class='title'><strong><?php echo $lang->testtask->activate ?></strong> #<?php echo $testtask->id ?></span>
- <nav class='nav'>
- <a data-dismiss='display'><i class='icon-remove muted'></i></a>
- </nav>
- </div>
- <form class='has-padding content' method='post' target='hiddenwin' action='<?php echo $this->createLink('testtask', 'activate', "id=$testtask->id")?>' id='activateForm' data-form-refresh='#page'>
- <div class='control'>
- <label for='comment'><?php echo $lang->comment;?></label>
- <?php echo html::textarea('comment', '', 'rows=4 class="textarea"');?></td>
- </div>
- </form>
- <div class='footer has-padding'>
- <button type='button' id='submitButton' class='btn primary'><?php echo $lang->save ?></button>
- </div>
- <script>
- $(function()
- {
- $('#submitButton').click(function(){$('#activateForm').submit()});
- })
- </script>
|