Files
EasySoft-ZenTaoPMS/module/budget/view/create.html.php
2020-12-09 09:29:59 +08:00

59 lines
2.3 KiB
PHP

<?php
/**
* The create view of budget module of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package budget
* @version $Id: create.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $
* @link http://www.zentao.net
*/
?>
<?php include '../../common/view/header.html.php';?>
<?php include '../../common/view/kindeditor.html.php';?>
<div id="mainContent" class="main-content fade">
<div class="center-block">
<div class="main-header">
<h2><?php echo $lang->budget->create . $lang->budget->common;?></h2>
</div>
<form class="main-form form-ajax" method='post' enctype='multipart/form-data'>
<table class="table table-form">
<tbody>
<tr>
<th class='w-120px'><?php echo $lang->budget->stage;?> </th>
<td><?php echo html::select('stage', $plans, '', 'class="form-control chosen"');?></td>
<td></td>
<td></td>
</tr>
<tr>
<th><?php echo $lang->budget->subject;?> </th>
<td><?php echo html::select('subject', $subjects, '', 'class="form-control chosen"');?></td>
</tr>
<tr>
<th><?php echo $lang->budget->amount;?> </th>
<td>
<div class='input-group'>
<?php echo html::input('amount', '', 'class="form-control"');?>
<span class='input-group-addon'><?php echo $lang->budget->{$project->budgetUnit};?></span>
</div>
</td>
</tr>
<tr>
<th><?php echo $lang->budget->name;?> </th>
<td colspan='2'><?php echo html::input('name', '', 'class="form-control"');?></td>
</tr>
<tr>
<th><?php echo $lang->budget->desc;?> </th>
<td colspan='2'><?php echo html::textarea('desc', '', 'class="form-control"');?></td>
</tr>
<tr>
<td colspan='4' class='text-center form-actions'><?php echo html::submitButton() . html::backButton();?></td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
<?php include '../../common/view/footer.html.php';?>