47 lines
1.8 KiB
PHP
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->edit . $lang->budget->common;?></h2>
|
|
</div>
|
|
</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, $budget->stage, '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, $budget->subject, 'class="form-control chosen"');?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->budget->amount;?> </th>
|
|
<td>
|
|
<div class='input-group'>
|
|
<?php echo html::input('amount', $budget->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', $budget->name, 'class="form-control"');?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->budget->desc;?> </th>
|
|
<td colspan='2'><?php echo html::textarea('desc', $budget->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>
|
|
<?php include '../../common/view/footer.html.php';?>
|