add column description to questionnaire table

This commit is contained in:
iIronside
2023-10-26 11:37:04 +03:00
parent 93f51f39c6
commit 700f79eb5c
9 changed files with 66 additions and 27 deletions

View File

@ -46,6 +46,8 @@ use yii\widgets\ActiveForm;
]
]) ?>
<?= $form->field($model, 'description')->textInput(['maxlength' => true]) ?>
<div class="form-group">
<?= Html::submitButton('Создать', ['class' => 'btn btn-success']) ?>
</div>

View File

@ -49,6 +49,7 @@ $this->params['breadcrumbs'][] = $this->title;
return TimeHelper::limitTime($model->time_limit);
}
],
'description',
['class' => 'yii\grid\ActionColumn'],
],
]); ?>

View File

@ -54,6 +54,7 @@ YiiAsset::register($this);
'format' => 'raw',
'value' => TimeHelper::limitTime($model->time_limit),
],
'description',
],
]) ?>