84 lines
2.1 KiB
PHP
Executable File
84 lines
2.1 KiB
PHP
Executable File
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\widgets\ActiveForm;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model backend\modules\cms\models\HandicappedSearch */
|
|
/* @var $form yii\widgets\ActiveForm */
|
|
?>
|
|
|
|
<div class="handicapped-search">
|
|
|
|
<?php $form = ActiveForm::begin([
|
|
'action' => ['index'],
|
|
'method' => 'get',
|
|
]); ?>
|
|
|
|
<?= $form->field($model, 'id') ?>
|
|
|
|
<?= $form->field($model, 'title') ?>
|
|
|
|
<?= $form->field($model, 'name') ?>
|
|
|
|
<?= $form->field($model, 'bdate') ?>
|
|
|
|
<?= $form->field($model, 'nation') ?>
|
|
|
|
<?php // echo $form->field($model, 'status_marital') ?>
|
|
|
|
<?php // echo $form->field($model, 'status_type') ?>
|
|
|
|
<?php // echo $form->field($model, 'refer_contract') ?>
|
|
|
|
<?php // echo $form->field($model, 'gov_welfare') ?>
|
|
|
|
<?php // echo $form->field($model, 'jobs') ?>
|
|
|
|
<?php // echo $form->field($model, 'income_m') ?>
|
|
|
|
<?php // echo $form->field($model, 'get_training') ?>
|
|
|
|
<?php // echo $form->field($model, 'get_money') ?>
|
|
|
|
<?php // echo $form->field($model, 'bank_type') ?>
|
|
|
|
<?php // echo $form->field($model, 'bank_name') ?>
|
|
|
|
<?php // echo $form->field($model, 'bank_id') ?>
|
|
|
|
<?php // echo $form->field($model, 'id_card') ?>
|
|
|
|
<?php // echo $form->field($model, 'address') ?>
|
|
|
|
<?php // echo $form->field($model, 'tel') ?>
|
|
|
|
<?php // echo $form->field($model, 'email') ?>
|
|
|
|
<?php // echo $form->field($model, 'topic') ?>
|
|
|
|
<?php // echo $form->field($model, 'description') ?>
|
|
|
|
<?php // echo $form->field($model, 'process') ?>
|
|
|
|
<?php // echo $form->field($model, 'files') ?>
|
|
|
|
<?php // echo $form->field($model, 'created_at') ?>
|
|
|
|
<?php // echo $form->field($model, 'updated_at') ?>
|
|
|
|
<?php // echo $form->field($model, 'status') ?>
|
|
|
|
<?php // echo $form->field($model, 'proceed') ?>
|
|
|
|
<?php // echo $form->field($model, 'remark') ?>
|
|
|
|
<div class="form-group">
|
|
<?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
|
|
<?= Html::resetButton('Reset', ['class' => 'btn btn-outline-secondary']) ?>
|
|
</div>
|
|
|
|
<?php ActiveForm::end(); ?>
|
|
|
|
</div>
|