Commit ed47356e by jomon

code review changes

parent 1a7272ce
......@@ -22,7 +22,8 @@ use common\models\State;
<div class="row">
<div class="col-md-6">
<?= $form->field($model, 'state_id')->dropDownList(ArrayHelper::map(State::find()->all(), 'id', 'name')) ?>
<?= $form->field($model, 'state_id')
->dropDownList(ArrayHelper::map(State::find()->all(), 'id', 'name')) ?>
</div>
</div>
......@@ -42,12 +43,16 @@ use common\models\State;
</div>
<div class="row">
<div class="col-md-3">
<?= $form->field($model, 'status')->dropDownList($model::statuses()) ?>
</div>
</div>
<div class="form-group">
<?= Html::submitButton($model->isNewRecord ? Yii::t('backend', 'Create') : Yii::t('backend',
'Update'), ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
</div>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment