20 lines
546 B
PHP
20 lines
546 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model backend\modules\questionnaire\models\UserResponse */
|
|
|
|
$this->title = 'Изменение ответа: ' . $model->response_body;
|
|
$this->params['breadcrumbs'][] = ['label' => 'User Responses', 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
|
|
$this->params['breadcrumbs'][] = 'Update';
|
|
?>
|
|
<div class="user-response-update">
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|