Files
EasySoft-ZenTaoPMS/module/budget/view/create.html.php
T
2020-08-18 14:36:39 +08:00

47 lines
1.8 KiB
PHP

<?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', $stages, '', '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->{$program->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';?>