spec and exp

This commit is contained in:
andrey
2021-08-11 17:21:18 +03:00
parent 4c3930f5e6
commit 93f7d4496c
4 changed files with 62 additions and 3 deletions

View File

@ -136,6 +136,15 @@ use yii\widgets\ActiveForm;
['prompt' => '...']
) ?>
</div>
<div class="col-xs-6">
<?= $form->field($model, 'specification')->textInput(['maxlength' => true]) ?>
</div>
</div>
<div class="row">
<div class="col-xs-6">
<?= $form->field($model, 'years_of_exp')->input('number') ?>
</div>
</div>

View File

@ -41,6 +41,10 @@ $this->params['breadcrumbs'][] = $this->title;
return \common\models\UserCard::getLevelLabel($model->level);
}
],
[
'attribute' => 'specification',
'value' => $model->specification
],
[
'attribute' => 'resume',
'format' => 'raw',