cdb04594
Yarik
test
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<?= $form->field($model, 'date_visit')->textInput() ?>
<?= $form->field($model, 'experience')->textInput() ?>
<?= $form->field($model, 'rank')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'salary')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'job')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'location')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'soft')->textInput() ?>
<?= $form->field($model, 'guarantee')->textInput() ?>
<?= $form->field($model, 'contract')->textInput() ?>
<?= $form->field($model, 'estimate')->textInput() ?>
<?= $form->field($model, 'purchase')->textInput() ?>
<?= $form->field($model, 'delivery')->textInput() ?>
<?= $form->field($model, 'prepayment')->textInput() ?>
<?= $form->field($model, 'about')->textarea(['rows' => 6]) ?>
|
1face72c
Yarik
test
|
48
49
50
51
52
53
54
55
|
<div class="form-group">
<?= Html::submitButton($model->isNewRecord ? Yii::t('app', 'Create') : Yii::t('app', 'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>
|