56 lines
2.1 KiB
PHP
56 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* The cancel file of task module of ZenTaoMS.
|
|
*
|
|
* ZenTaoMS is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* ZenTaoMS is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with ZenTaoMS. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* @copyright Copyright 2009-2010 青岛易软天创网络科技有限公司(www.cnezsoft.com)
|
|
* @author Jia Fu <fujia@cnezsoft.com>
|
|
* @package task
|
|
* @version $Id: cancel.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $
|
|
* @link http://www.zentaoms.com
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<form method='post' target='hiddenwin'>
|
|
<div class='yui-d0'>
|
|
<table class='table-1'>
|
|
<caption><?php echo $task->name;?></caption>
|
|
<tr>
|
|
<td class='rowhead'><?php echo $lang->task->estimate;?></td>
|
|
<td><?php echo $task->estimate;?></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='rowhead'><?php echo $lang->task->consumed;?></th>
|
|
<td><?php echo $task->consumed;?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class='rowhead'><?php echo $lang->comment;?></td>
|
|
<td><?php echo html::textarea('comment', '', "rows='6' class='area-1'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='2' class='a-center'>
|
|
<?php
|
|
echo html::submitButton();
|
|
echo html::hidden('status', 'cancel');
|
|
?>
|
|
<input type='button' value='<?php echo $lang->task->buttonBackToList;?>' class='button-s'
|
|
onclick='location.href="<?php echo $this->session->taskList;?>"' />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<?php include '../../common/view/action.html.php';?>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|