Files
2017-01-24 19:26:05 +02:00

20 lines
503 B
PHP

<?php
/* @var $this yii\web\View */
/* @var $model app\models\Event */
use yii\helpers\Html;
$this->title = 'Изменить Event: ' . $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Events', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Редактирование';
?>
<div class="event-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>