Files
EasySoft-ZenTaoPMS/trunk/module/story/view/create.html.php
2010-02-06 05:21:34 +00:00

77 lines
3.1 KiB
PHP

<?php
/**
* The create view of story 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 Chunsheng Wang
* @author Chunsheng Wang <wwccss@263.net>
* @package story
* @version $Id$
* @link http://www.zentao.cn
*/
?>
<?php include './header.html.php';?>
<style>
#plan {width:245px}
</style>
<div class='yui-d0'>
<form method='post' enctype='multipart/form-data' target='hiddenwin'>
<table align='center' class='table-1'>
<caption><?php echo $lang->story->create;?></caption>
<tr>
<th class='rowhead'><?php echo $lang->story->product;?></th>
<td>
<?php echo html::select('product', $products, $product->id, "onchange=loadProduct(this.value); class='select-3'");?>
<span id='moduleIdBox'><?php echo html::select('module', $moduleOptionMenu, $moduleID);?></span>
</td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->story->plan;?></th>
<td><span id='planIdBox'><?php echo html::select('plan', $plans, '', 'class=select-3');?></span></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->story->pri;?></th>
<td><?php echo html::select('pri', (array)$lang->story->priList, '', 'class=select-3');?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->story->estimate;?></th>
<td><input type='text' name='estimate' id='estimate' class='text-3' /></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->story->assignedTo;?></th>
<td><?php echo html::select('assignedTo', $users, '', 'class=select-3');?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->story->title;?></th>
<td><input type='text' name='title' class='text-1' /></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->story->spec;?></th>
<td><textarea name='spec' rows='8' class='text-1'></textarea></td>
</tr>
<tr>
<th class='rowhead'><nobr><?php echo $lang->story->mailto;?></nobr></th>
<td><?php echo html::input('mailto', '', 'class="text-1"');?></td>
</tr>
<tr>
<th class='rowhead'><?php echo $lang->story->legendAttatch;?></th>
<td><?php echo $this->fetch('file', 'buildform');?></td>
</tr>
<tr><td colspan='2' class='a-center'><?php echo html::submitButton() . html::resetButton();?></td></tr>
</table>
</form>
</div>
<?php include '../../common/footer.html.php';?>